Skip to content

Commit

Permalink
feat(ci): use native arm64 builds
Browse files Browse the repository at this point in the history
Fixes #2595
  • Loading branch information
nijel committed Jan 16, 2025
1 parent 9db042c commit 05fd483
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/container-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@ on:

jobs:
container-build:
runs-on: ubuntu-24.04
runs-on: ${{ inputs.architecture == 'linux/arm64' && 'ubuntu-24.04-arm' || 'ubuntu-24.04' }}
name: Build, ${{ inputs.variant }}, ${{ inputs.architecture }}
env:
MATRIX_ARCHITECTURE: ${{ inputs.architecture }}
steps:
- uses: actions/checkout@v4
- name: Set up QEMU
if: inputs.architecture != 'linux/amd64'
if: inputs.architecture != 'linux/amd64' && inputs.architecture != 'linux/arm64'
uses: docker/[email protected]
with:
platforms: ${{ inputs.architecture }}
Expand Down

0 comments on commit 05fd483

Please sign in to comment.