Skip to content

Commit 4f2ba3a

Browse files
committed
put back continue-on-error
1 parent 7491357 commit 4f2ba3a

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

.github/workflows/test-go.yaml

+3-5
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,9 @@ jobs:
5151
exclude:
5252
- isCron: false
5353
mysql: "mysql:9.1.0"
54-
continue-on-error: true
54+
# Don't cancel all tests if an integration suite fails as integration suites are more likely to be flakey.
55+
# Don't cancel all tests if the vulns suite fails as vulns may start failing for unrelated reasons to PR'd code.
56+
continue-on-error: ${{ matrix.suite == 'vuln' || startsWith(matrix.suite, 'integration-') }}
5557
runs-on: ${{ matrix.os }}
5658

5759
env:
@@ -86,10 +88,6 @@ jobs:
8688
- name: Install Go Dependencies
8789
run: make deps-go
8890

89-
# This step takes >20 seconds and should be skipped for jobs that don't need it. https://github.com/fleetdm/fleet/issues/27435
90-
# - name: Install ZSH
91-
# run: sudo apt update && sudo apt install -y zsh
92-
9391
- name: Generate static files
9492
run: |
9593
export PATH=$PATH:~/go/bin

0 commit comments

Comments
 (0)