Skip to content

Commit f2ff7b8

Browse files
committed
fixup! fixup! .github: Allow individual steps to fail
Signed-off-by: Jorge Marques <[email protected]>
1 parent 0facf6d commit f2ff7b8

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
build:
3838
timeout-minutes: 7200
3939
runs-on: [self-hosted, v1]
40-
# continue-on-error: true
40+
continue-on-error: true
4141

4242
outputs:
4343
fail: ${{ steps.assert.outputs.fail }}
@@ -162,4 +162,3 @@ jobs:
162162
run: |
163163
source ci/runner_env.sh
164164
export_labels
165-
# [ "$FATAL" == 'true' ] && exit 1

.github/workflows/checks.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
checks:
1717
timeout-minutes: 7200
1818
runs-on: [self-hosted, v1]
19-
# continue-on-error: true
19+
continue-on-error: true
2020

2121
outputs:
2222
fail: ${{ steps.assert.outputs.fail }}
@@ -119,5 +119,4 @@ jobs:
119119
run: |
120120
echo "warn=$(printenv | grep ^step_warn_ | grep -v =$ | tr '\n' ',' | sed 's/,$//')" >> "$GITHUB_OUTPUT"
121121
echo "fail=$(printenv | grep ^step_fail_ | grep -v =$ | tr '\n' ',' | sed 's/,$//')" >> "$GITHUB_OUTPUT"
122-
# [ "$FATAL" == 'true' ] && exit 1
123122

0 commit comments

Comments
 (0)