Skip to content

Commit 6ef4c82

Browse files
- Interpolation fixed.
1 parent 1eb83fa commit 6ef4c82

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

.github/workflows/build.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
winbuild:
3434
name: Windows Build
3535
runs-on: windows-latest
36-
timeout-minutes: ${{ vars.DEFAULT_JOB_TIMEOUT_MIN == '' && '120' || vars.DEFAULT_JOB_TIMEOUT_MIN }}
36+
timeout-minutes: ${{ vars.DEFAULT_JOB_TIMEOUT_MIN == '' && 120 || vars.DEFAULT_JOB_TIMEOUT_MIN }}
3737
steps:
3838

3939
- name: Get rid of disruptive line endings before checkout
@@ -79,7 +79,7 @@ jobs:
7979
- name: Set up mingw
8080
uses: egor-tensin/setup-mingw@v2.2.0
8181
id: gccsetup
82-
timeout-minutes: ${{ vars.DEFAULT_STEP_TIMEOUT_MIN == '' && '20' || vars.DEFAULT_STEP_TIMEOUT_MIN }}
82+
timeout-minutes: ${{ vars.DEFAULT_STEP_TIMEOUT_MIN == '' && 20 || vars.DEFAULT_STEP_TIMEOUT_MIN }}
8383
with:
8484
version: '8.1.0'
8585

@@ -94,13 +94,13 @@ jobs:
9494
9595
- name: Choco install openssl
9696
uses: crazy-max/ghaction-chocolatey@v3.0.0
97-
timeout-minutes: ${{ vars.DEFAULT_LONG_STEP_TIMEOUT_MIN == '' && '40' || vars.DEFAULT_LONG_STEP_TIMEOUT_MIN }}
97+
timeout-minutes: ${{ vars.DEFAULT_LONG_STEP_TIMEOUT_MIN == '' && 40 || vars.DEFAULT_LONG_STEP_TIMEOUT_MIN }}
9898
with:
9999
args: "install --force openssl --version 3.1.1"
100100

101101
- name: Choco install packages
102102
uses: crazy-max/ghaction-chocolatey@v3.0.0
103-
timeout-minutes: ${{ vars.DEFAULT_LONG_STEP_TIMEOUT_MIN == '' && '40' || vars.DEFAULT_LONG_STEP_TIMEOUT_MIN }}
103+
timeout-minutes: ${{ vars.DEFAULT_LONG_STEP_TIMEOUT_MIN == '' && 40 || vars.DEFAULT_LONG_STEP_TIMEOUT_MIN }}
104104
with:
105105
args: "install --force postgresql13 sqlite"
106106

@@ -207,7 +207,7 @@ jobs:
207207
linuxbuild:
208208
name: Linux Build
209209
runs-on: ubuntu-latest
210-
timeout-minutes: ${{ vars.DEFAULT_JOB_TIMEOUT_MIN == '' && '120' || vars.DEFAULT_JOB_TIMEOUT_MIN }}
210+
timeout-minutes: ${{ vars.DEFAULT_JOB_TIMEOUT_MIN == '' && 120 || vars.DEFAULT_JOB_TIMEOUT_MIN }}
211211
steps:
212212

213213
- name: Check out code into the Go module directory
@@ -465,7 +465,7 @@ jobs:
465465
linuxarmbuild:
466466
name: Linux arm64 Build
467467
runs-on: arm-ubuntu-22-04-runner-one
468-
timeout-minutes: ${{ vars.DEFAULT_JOB_TIMEOUT_MIN == '' && '120' || vars.DEFAULT_JOB_TIMEOUT_MIN }}
468+
timeout-minutes: ${{ vars.DEFAULT_JOB_TIMEOUT_MIN == '' && 120 || vars.DEFAULT_JOB_TIMEOUT_MIN }}
469469
steps:
470470

471471
- name: Check out code into the Go module directory
@@ -749,7 +749,7 @@ jobs:
749749
name: WSL Test
750750
runs-on: windows-latest
751751
needs: linuxbuild
752-
timeout-minutes: ${{ vars.DEFAULT_JOB_TIMEOUT_MIN == '' && '120' || vars.DEFAULT_JOB_TIMEOUT_MIN }}
752+
timeout-minutes: ${{ vars.DEFAULT_JOB_TIMEOUT_MIN == '' && 120 || vars.DEFAULT_JOB_TIMEOUT_MIN }}
753753
steps:
754754

755755
- name: Get rid of disruptive line endings before checkout
@@ -864,7 +864,7 @@ jobs:
864864
macosbuild:
865865
name: MacOS Build
866866
runs-on: macos-12
867-
timeout-minutes: ${{ vars.DEFAULT_JOB_TIMEOUT_MIN == '' && '120' || vars.DEFAULT_JOB_TIMEOUT_MIN }}
867+
timeout-minutes: ${{ vars.DEFAULT_JOB_TIMEOUT_MIN == '' && 120 || vars.DEFAULT_JOB_TIMEOUT_MIN }}
868868
steps:
869869
- name: Check out code into the Go module directory
870870
uses: actions/checkout@v4.1.1
@@ -1003,7 +1003,7 @@ jobs:
10031003
macosarmbuild:
10041004
name: MacOS ARM Build
10051005
runs-on: macos-latest
1006-
timeout-minutes: ${{ vars.DEFAULT_JOB_TIMEOUT_MIN == '' && '120' || vars.DEFAULT_JOB_TIMEOUT_MIN }}
1006+
timeout-minutes: ${{ vars.DEFAULT_JOB_TIMEOUT_MIN == '' && 120 || vars.DEFAULT_JOB_TIMEOUT_MIN }}
10071007
steps:
10081008

10091009
- name: Check out code into the Go module directory
@@ -1081,7 +1081,7 @@ jobs:
10811081
dockerbuild:
10821082
name: Docker Build
10831083
runs-on: ubuntu-latest-m
1084-
timeout-minutes: ${{ vars.DEFAULT_JOB_TIMEOUT_MIN == '' && '120' || vars.DEFAULT_JOB_TIMEOUT_MIN }}
1084+
timeout-minutes: ${{ vars.DEFAULT_JOB_TIMEOUT_MIN == '' && 120 || vars.DEFAULT_JOB_TIMEOUT_MIN }}
10851085
steps:
10861086

10871087
- name: Check out code into the Go module directory
@@ -1234,13 +1234,13 @@ jobs:
12341234
12351235
- name: Run robot mocked functional tests
12361236
if: success()
1237-
timeout-minutes: ${{ vars.DEFAULT_STEP_TIMEOUT_MIN == '' && '20' || vars.DEFAULT_STEP_TIMEOUT_MIN }}
1237+
timeout-minutes: ${{ vars.DEFAULT_STEP_TIMEOUT_MIN == '' && 20 || vars.DEFAULT_STEP_TIMEOUT_MIN }}
12381238
run: |
12391239
python cicd/python/build.py --robot-test --config='{ "variables": { "EXECUTION_PLATFORM": "docker" } }'
12401240
12411241
- name: Run POSTGRES BACKEND robot mocked functional tests
12421242
if: success()
1243-
timeout-minutes: ${{ vars.DEFAULT_STEP_TIMEOUT_MIN == '' && '20' || vars.DEFAULT_STEP_TIMEOUT_MIN }}
1243+
timeout-minutes: ${{ vars.DEFAULT_STEP_TIMEOUT_MIN == '' && 20 || vars.DEFAULT_STEP_TIMEOUT_MIN }}
12441244
run: |
12451245
echo "## Stray docker containers before postgres robot tests ##"
12461246
docker container ls --format "table {{.ID}}\t{{.Names}}\t{{.Ports}}" -a

0 commit comments

Comments
 (0)