Skip to content

Commit

Permalink
Merge pull request #11001 from rouault/ci_docker_arch
Browse files Browse the repository at this point in the history
CI: test Docker ubuntu-small and ubuntu-full on linux/arm64 as well
  • Loading branch information
rouault authored Oct 13, 2024
2 parents 7c54387 + d5ee743 commit 1bad03e
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,24 @@ jobs:
matrix:
include:
- name: alpine-small
arch: linux/amd64

- name: alpine-normal
arch: linux/amd64

- name: ubuntu-small
arch: linux/amd64

- name: ubuntu-small
arch: linux/arm64

- name: ubuntu-full
arch: linux/amd64

- name: ubuntu-full
arch: linux/arm64

name: ${{ matrix.name }}
name: ${{ matrix.name }}-${{ matrix.arch }}

runs-on: ubuntu-latest

Expand All @@ -43,5 +53,6 @@ jobs:
- name: Build
shell: bash -l {0}
run: |
docker run --rm --privileged linuxkit/binfmt:v0.8
cd docker/${{ matrix.name }}
./build.sh --platform linux/amd64
./build.sh --platform ${{ matrix.arch }}

0 comments on commit 1bad03e

Please sign in to comment.