Skip to content

Commit

Permalink
ci: bump qemu to v8 (#158)
Browse files Browse the repository at this point in the history
* ci: bump qemu to v8

* ci: capture script failures properly (#156)

* ci: capture exit code properly

* chore: simplify exit

* style: fix whitespace

* Revert "ci: capture script failures properly (#156)"

This reverts commit 4cdb71f.
  • Loading branch information
alex-liang3 authored Jan 24, 2025
1 parent fda9dcd commit db3ca6e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/build-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,8 @@ jobs:
lfs: true
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
with:
image: tonistiigi/binfmt:qemu-v8.1.5 # https://github.com/tonistiigi/binfmt/issues/215#issuecomment-2611042596
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to DockerHub
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/build-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,10 @@ jobs:
lfs: true
- name: Set up QEMU for ARM64
if: (matrix.architecture == 'linux/arm64' && github.ref == 'refs/heads/main') || (matrix.architecture == 'linux/arm64' && github.event_name == 'release' && github.event.action == 'published')
uses: docker/setup-qemu-action@v2
uses: docker/setup-qemu-action@v3
with:
platforms: linux/arm64
image: tonistiigi/binfmt:qemu-v8.1.5 # https://github.com/tonistiigi/binfmt/issues/215#issuecomment-2611042596
- name: Login to DockerHub
if: matrix.architecture != 'linux/arm64' || github.ref == 'refs/heads/main' || (github.event_name == 'release' && github.event.action == 'published')
uses: docker/login-action@v3
Expand Down Expand Up @@ -86,9 +87,10 @@ jobs:
lfs: true
- name: Set up QEMU for ARM64
if: (matrix.architecture == 'linux/arm64' && github.ref == 'refs/heads/main') || (matrix.architecture == 'linux/arm64' && github.event_name == 'release' && github.event.action == 'published')
uses: docker/setup-qemu-action@v2
uses: docker/setup-qemu-action@v3
with:
platforms: linux/arm64
image: tonistiigi/binfmt:qemu-v8.1.5 # https://github.com/tonistiigi/binfmt/issues/215#issuecomment-2611042596
- name: Login to DockerHub
if: matrix.architecture != 'linux/arm64' || github.ref == 'refs/heads/main' || (github.event_name == 'release' && github.event.action == 'published')
uses: docker/login-action@v3
Expand Down

0 comments on commit db3ca6e

Please sign in to comment.