Skip to content

Commit ac5f338

Browse files
committed
workflow: allow_failure on client_build:
1 parent 313cb00 commit ac5f338

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.github/workflows/build_pre_release.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ env:
1111
TAG: ${{ inputs.TAG }}
1212

1313
jobs:
14-
1514
draft:
1615
runs-on: ubuntu-latest
1716
steps:
@@ -80,6 +79,7 @@ jobs:
8079
client-build:
8180
needs: [draft]
8281
runs-on: ${{ matrix.runs_on }}
82+
continue-on-error: ${{ matrix.continue-on-error || false }}
8383
strategy:
8484
fail-fast: false
8585
matrix:
@@ -101,6 +101,7 @@ jobs:
101101

102102
# Compile the client
103103
- name: Run client for ${{matrix.arch}}
104+
continue-on-error: ${{ matrix.continue_on_error || false }}
104105
run: ./release.bash "${{ env.REGISTRY }}:${{ env.TAG }}" client-tgz
105106

106107
# Upload files to draft release

.github/workflows/build_test.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ jobs:
5959

6060
client-build:
6161
runs-on: ${{ matrix.runs_on }}
62+
continue-on-error: ${{ matrix.continue-on-error || false }}
6263
strategy:
6364
fail-fast: false
6465
matrix:
@@ -86,9 +87,12 @@ jobs:
8687
else
8788
echo "TAG=ref-${{ github.ref_name }}" >> $GITHUB_ENV;
8889
fi
90+
8991
# Compile the client
9092
- name: Run client for ${{matrix.arch}}
93+
continue-on-error: ${{ matrix.continue-on-error || false }}
9194
run: ./release.bash "${{ env.REGISTRY }}:${{ env.TAG }}" client-tgz
95+
9296
# Push Artifacts to GitHub
9397
- uses: actions/upload-artifact@v4
9498
with:

0 commit comments

Comments
 (0)