Skip to content

Commit

Permalink
More debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Vasseur committed Jan 6, 2024
1 parent c70708f commit 10c24a4
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions .github/workflows/build-containers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,20 @@ jobs:
- uses: actions/checkout@v2
- name: Build container for hardcoded arm64v8
run: |
cat /proc/sys/fs/binfmt_misc/qemu-*
sudo apt update; sudo apt install docker-buildx-plugin
docker run --privileged --rm tonistiigi/binfmt --install all
cat /proc/sys/fs/binfmt_misc/qemu-* || true
cd docker-contributor
docker build --platform linux/arm64 --build-arg ARCH=arm64v8/ .
pr-docker-contributor-arm64-buildx:
name: PR Docker contributor image (buildx arm64v8)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build container for hardcoded arm64v8
run: |
docker run --privileged --rm tonistiigi/binfmt --install all
cat /proc/sys/fs/binfmt_misc/qemu-* || true
cd docker-contributor
docker buildx build --platform linux/arm64 --build-arg ARCH=arm64v8/ .

0 comments on commit 10c24a4

Please sign in to comment.