Skip to content

Commit 0ac76f4

Browse files
committed
ubuntu setup sbuild: separate arm64 and armhf repositories
1 parent 0c1cf44 commit 0ac76f4

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

.github/workflows/common-build.yml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)