1
1
package :
2
2
name : actions-runner-controller
3
- version : 0.9.0
4
- epoch : 1
3
+ version : 0.9.1
4
+ epoch : 0
5
5
description : Kubernetes controller for GitHub Actions self-hosted runners
6
6
copyright :
7
7
- license : Apache-2.0
@@ -18,24 +18,25 @@ pipeline:
18
18
with :
19
19
repository : https://github.com/actions/actions-runner-controller
20
20
tag : gha-runner-scale-set-${{package.version}}
21
- expected-commit : 4357525445b0b77388af4e1f171b5b7bd9b116a4
22
-
23
- # Ref: https://github.com/actions/actions-runner-controller/blob/gha-runner-scale-set-0.5.0/Dockerfile#L35
24
- - uses : go/bump
25
- with :
26
- deps :
github.com/cloudflare/[email protected]
21
+ expected-commit : 9e191cdd21621f4e43023e0bdbbd2ff9b139c8a6
27
22
28
23
- uses : go/build
29
24
with :
30
25
packages : .
31
26
output : manager
32
- ldflags : -s -w
27
+ ldflags : -s -w -X 'github.com/actions/actions-runner-controller/build.Version=${{package.version}}' -X 'github.com/actions/actions-runner-controller/build.CommitSHA=$(git rev-parse HEAD)'
33
28
34
29
- uses : go/build
35
30
with :
36
31
packages : ./cmd/githubrunnerscalesetlistener
37
32
output : github-runnerscaleset-listener
38
- ldflags : -s -w -X 'github.com/actions/actions-runner-controller/build.Version=${{package.version}}'
33
+ ldflags : -s -w -X 'github.com/actions/actions-runner-controller/build.Version=${{package.version}}' -X 'github.com/actions/actions-runner-controller/build.CommitSHA=$(git rev-parse HEAD)'
34
+
35
+ - uses : go/build
36
+ with :
37
+ packages : ./cmd/ghalistener
38
+ output : ghalistener
39
+ ldflags : -s -w -X 'github.com/actions/actions-runner-controller/build.Version=${{package.version}}' -X 'github.com/actions/actions-runner-controller/build.CommitSHA=$(git rev-parse HEAD)'
39
40
40
41
- uses : go/build
41
42
with :
@@ -64,10 +65,27 @@ subpackages:
64
65
- runs : |
65
66
mkdir -p "${{targets.subpkgdir}}"
66
67
ln -sf /usr/bin/manager ${{targets.subpkgdir}}/manager
68
+ ln -sf /usr/bin/ghalistener ${{targets.subpkgdir}}/ghalistener
67
69
68
70
update :
69
71
enabled : true
70
72
github :
71
73
identifier : actions/actions-runner-controller
72
74
strip-prefix : gha-runner-scale-set-
73
75
tag-filter : gha-runner-scale-set-
76
+
77
+ test :
78
+ environment :
79
+ contents :
80
+ packages :
81
+ - ${{package.name}}-compat
82
+ pipeline :
83
+ - runs : |
84
+ set +e
85
+ /manager -h
86
+ /ghalistener -h
87
+ github-runnerscaleset-listener -h
88
+ ghalistener -h
89
+ github-webhook-server -h
90
+ actions-metrics-server -h
91
+ sleep -h
0 commit comments