Skip to content

Commit e265324

Browse files
Merge pull request #6 from gabriel-samfira/fix-runner-groups
Fix runner group option
2 parents 318e784 + 40a6797 commit e265324

File tree

1 file changed

+11
-16
lines changed

1 file changed

+11
-16
lines changed

cloudconfig/templates.go

+11-16
Original file line numberDiff line numberDiff line change
@@ -111,16 +111,6 @@ function downloadAndExtractRunner() {
111111
# chown {{ .RunnerUsername }}:{{ .RunnerGroup }} -R /home/{{ .RunnerUsername }}/actions-runner/ || fail "failed to change owner"
112112
}
113113
114-
{{- if not .UseJITConfig }}
115-
GH_RUNNER_GROUP="{{.GitHubRunnerGroup}}"
116-
# $RUNNER_GROUP_OPT will be added to the config.sh line. If it's empty, nothing happens
117-
# if it holds a value, it will be part of the command.
118-
RUNNER_GROUP_OPT=""
119-
if [ ! -z $GH_RUNNER_GROUP ];then
120-
RUNNER_GROUP_OPT="--runnergroup=$GH_RUNNER_GROUP"
121-
fi
122-
{{- end }}
123-
124114
CACHED_RUNNER=$(getCachedToolsPath)
125115
if [ -z "$CACHED_RUNNER" ];then
126116
downloadAndExtractRunner
@@ -171,7 +161,11 @@ set +e
171161
attempt=1
172162
while true; do
173163
ERROUT=$(mktemp)
174-
./config.sh --unattended --url "{{ .RepoURL }}" --token "$GITHUB_TOKEN" $RUNNER_GROUP_OPT --name "{{ .RunnerName }}" --labels "{{ .RunnerLabels }}" --ephemeral 2>$ERROUT
164+
{{- if .GitHubRunnerGroup }}
165+
./config.sh --unattended --url "{{ .RepoURL }}" --token "$GITHUB_TOKEN" --runnergroup {{.GitHubRunnerGroup}} --name "{{ .RunnerName }}" --labels "{{ .RunnerLabels }}" --ephemeral 2>$ERROUT
166+
{{- else}}
167+
./config.sh --unattended --url "{{ .RepoURL }}" --token "$GITHUB_TOKEN" --name "{{ .RunnerName }}" --labels "{{ .RunnerLabels }}" --ephemeral 2>$ERROUT
168+
{{- end}}
175169
if [ $? -eq 0 ]; then
176170
rm $ERROUT || true
177171
sendStatus "runner successfully configured after $attempt attempt(s)"
@@ -431,10 +425,7 @@ function Install-Runner() {
431425
Update-GarmStatus -CallbackURL $CallbackURL -Message "extracting runner"
432426
Add-Type -AssemblyName System.IO.Compression.FileSystem
433427
[System.IO.Compression.ZipFile]::ExtractToDirectory($downloadPath, "$runnerDir")
434-
$runnerGroupOpt = ""
435-
if ($GHRunnerGroup.Length -gt 0){
436-
$runnerGroupOpt = "--runnergroup $GHRunnerGroup"
437-
}
428+
438429
Update-GarmStatus -CallbackURL $CallbackURL -Message "configuring and starting runner"
439430
cd $runnerDir
440431
@@ -460,7 +451,11 @@ function Install-Runner() {
460451
461452
{{- else }}
462453
$GithubRegistrationToken = Invoke-WebRequest -UseBasicParsing -Headers @{"Accept"="application/json"; "Authorization"="Bearer $Token"} -Uri $MetadataURL/runner-registration-token/
463-
./config.cmd --unattended --url "{{ .RepoURL }}" --token $GithubRegistrationToken $runnerGroupOpt --name "{{ .RunnerName }}" --labels "{{ .RunnerLabels }}" --ephemeral --runasservice
454+
{{- if .GitHubRunnerGroup }}
455+
./config.cmd --unattended --url "{{ .RepoURL }}" --token $GithubRegistrationToken --runnergroup {{.GitHubRunnerGroup}} --name "{{ .RunnerName }}" --labels "{{ .RunnerLabels }}" --ephemeral --runasservice
456+
{{- else}}
457+
./config.cmd --unattended --url "{{ .RepoURL }}" --token $GithubRegistrationToken --name "{{ .RunnerName }}" --labels "{{ .RunnerLabels }}" --ephemeral --runasservice
458+
{{- end}}
464459
465460
$agentInfoFile = Join-Path $runnerDir ".runner"
466461
$agentInfo = ConvertFrom-Json (gc -raw $agentInfoFile)

0 commit comments

Comments
 (0)