Skip to content

Commit

Permalink
better field name
Browse files Browse the repository at this point in the history
Signed-off-by: Tim Vaillancourt <tim@timvaillancourt.com>
  • Loading branch information
timvaillancourt committed Feb 13, 2025
1 parent 7964e21 commit c70cf30
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions test/ci_workflow_gen.go
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ type clusterTest struct {
Name, Shard, Platform string
FileName string
BuildTag string
RunnerName string
RunsOn string
MemoryCheck bool
MakeTools, InstallXtraBackup bool
Docker bool
Expand Down Expand Up @@ -268,7 +268,7 @@ func generateClusterWorkflows(list []string, tpl string) {
cores16Clusters := canonnizeList(clusterRequiring16CoresMachines)
for _, cores16Cluster := range cores16Clusters {
if cores16Cluster == cluster {
test.RunnerName = cores16RunnerName
test.RunsOn = cores16RunnerName
break
}
}
Expand Down
2 changes: 1 addition & 1 deletion test/templates/cluster_endtoend_test.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
build:
timeout-minutes: 60
name: Run endtoend tests on {{.Name}}
runs-on: {{if .RunnerName}}{{ .RunnerName }}{{else}}ubuntu-24.04{{end}}
runs-on: {{if .RunsOn}}{{ .RunsOn }}{{else}}ubuntu-24.04{{end}}

steps:
- name: Skip CI
Expand Down
2 changes: 1 addition & 1 deletion test/templates/cluster_endtoend_test_docker.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ permissions: read-all
jobs:
build:
name: Run endtoend tests on {{.Name}}
runs-on: {{if .RunnerName}}{{ .RunnerName }}{{else}}ubuntu-24.04{{end}}
runs-on: {{if .RunsOn}}{{ .RunsOn }}{{else}}ubuntu-24.04{{end}}

steps:
- name: Skip CI
Expand Down
2 changes: 1 addition & 1 deletion test/templates/cluster_endtoend_test_mysql57.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ env:
jobs:
build:
name: Run endtoend tests on {{.Name}}
runs-on: {{if .RunnerName}}{{ .RunnerName }}{{else}}ubuntu-24.04{{end}}
runs-on: {{if .RunsOn}}{{ .RunsOn }}{{else}}ubuntu-24.04{{end}}

steps:
- name: Skip CI
Expand Down

0 comments on commit c70cf30

Please sign in to comment.