Skip to content

Commit

Permalink
compact tmpl syntax
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 c70cf30 commit 244e30e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
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 .RunsOn}}{{ .RunsOn }}{{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 .RunsOn}}{{ .RunsOn }}{{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 .RunsOn}}{{ .RunsOn }}{{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 244e30e

Please sign in to comment.