Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

use arm64 GitHub Actions runners for arm64 docker image builds #67

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 12 additions & 2 deletions .github/workflows/dockerimage-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,17 @@ jobs:
build_pr:
name: "Test Build Docker images"
if: github.event_name == 'pull_request' || github.event_name == 'workflow_dispatch' || ( github.event_name != 'create' && github.event_name != 'pull_request' && github.event_name != 'schedule' )
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
strategy:
matrix:
arch:
- 'amd64'
- 'arm64'
include:
- arch: 'amd64'
os: ubuntu-latest
- arch: 'arm64'
os: ubuntu-24.04-arm
nightlark marked this conversation as resolved.
Show resolved Hide resolved
env:
OWNER: '${{ github.repository_owner }}'
steps:
Expand Down Expand Up @@ -68,12 +73,17 @@ jobs:
build_release:
name: "Build release Docker images"
if: github.event_name == 'create' && github.event.ref_type == 'tag'
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
strategy:
matrix:
arch:
- 'amd64'
- 'arm64'
include:
- arch: 'amd64'
os: ubuntu-latest
- arch: 'arm64'
os: ubuntu-24.04-arm
env:
TAG: ${{ github.event.ref }}
OWNER: '${{ github.repository_owner }}'
Expand Down