Skip to content

Commit dcfe461

Browse files
authored
ci: increase mac test timeout to 1 hour (#1809)
This is to temporarily unblock CI for a release. The example tests were recently re-enabled for macOS and are taking a long time to run.
1 parent 5e0de87 commit dcfe461

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/cli-tests.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ jobs:
142142
os: "${{ inputs.run-mac-tests && 'dummy' || 'macos-latest' }}"
143143

144144
runs-on: ${{ matrix.os }}
145-
timeout-minutes: 37
145+
timeout-minutes: 60
146146
steps:
147147
- name: Maximize build disk space
148148
uses: easimon/maximize-build-space@v8
@@ -187,7 +187,7 @@ jobs:
187187
DEVBOX_DEBUG: ${{ (matrix.run-project-tests == 'project-tests-off' || inputs.example-debug) && '1' || '0' }}
188188
DEVBOX_RUN_PROJECT_TESTS: ${{ matrix.run-project-tests == 'project-tests' && '1' || '0' }}
189189
# Used in `go test -timeout` flag. Needs a value that time.ParseDuration can parse.
190-
DEVBOX_GOLANG_TEST_TIMEOUT: "${{ (github.ref == 'refs/heads/main' || inputs.run-mac-tests) && '35m' || '30m' }}"
190+
DEVBOX_GOLANG_TEST_TIMEOUT: "${{ (github.ref == 'refs/heads/main' || inputs.run-mac-tests) && '1h' || '30m' }}"
191191
run: |
192192
echo "::group::Nix version"
193193
nix --version

0 commit comments

Comments
 (0)