File tree Expand file tree Collapse file tree 1 file changed +6
-7
lines changed Expand file tree Collapse file tree 1 file changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -105,6 +105,7 @@ jobs:
105105 build-binary-package :
106106 runs-on : ${{ inputs.build_runner }}
107107 environment : build
108+ continue-on-error : true
108109 strategy :
109110 matrix :
110111 dist : ${{ fromJSON(inputs.build_dists) }}
@@ -115,13 +116,11 @@ jobs:
115116 - uses : actions/checkout@v4
116117 - name : Determine build architecture
117118 run : |
118- case "${{ matrix.arch }}" in
119- i386) BUILD_ARCH=i386 ;;
120- amd64) BUILD_ARCH=amd64 ;;
121- arm64) BUILD_ARCH=arm64 ;;
122- armhf) BUILD_ARCH=armhf ;;
123- *) echo "Unknown architecture"; exit 1 ;;
124- esac
119+ if [ ${{ matrix.arch }} = "i386" ]; then
120+ BUILD_ARCH=i386
121+ else
122+ BUILD_ARCH=amd64
123+ fi
125124 echo "BUILD_ARCH=${BUILD_ARCH}" >> $GITHUB_ENV
126125 # Only setup APT signing key for releases, not for CI testing
127126 - name : Setup APT Signing key
You can’t perform that action at this time.
0 commit comments