Skip to content

Commit

Permalink
chore(ci): try to workaround alpine aarch64 problem.
Browse files Browse the repository at this point in the history
Signed-off-by: Federico Di Pierro <nierro92@gmail.com>
  • Loading branch information
FedeDP committed Dec 11, 2023
1 parent a669f40 commit 5006f26
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/reusable_build_packages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,13 @@ jobs:
runs-on: ${{ (inputs.arch == 'aarch64' && 'actuated-arm64-8cpu-16gb') || 'ubuntu-latest' }}
container: alpine:3.17
steps:
# See https://github.com/actions/runner/issues/801#issuecomment-1374967227
- name: Fixup aarch64 alpine support
if: inputs.arch == 'aarch64'
run: |
apk add gcompat
sed -i "s:ID=alpine:ID=NotpineForGHA:" /etc/os-release
# Always install deps before invoking checkout action, to properly perform a full clone.
- name: Install build dependencies
run: |
Expand Down

0 comments on commit 5006f26

Please sign in to comment.