Skip to content

Commit

Permalink
Update docker script
Browse files Browse the repository at this point in the history
  • Loading branch information
ibireme committed Dec 8, 2024
1 parent cb2872e commit 369ba25
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,20 @@ jobs:
strategy:
fail-fast: false
matrix:
arch: [i386, arm32v7, arm64v8, ppc64le, s390x, riscv64]

include:
- arch: i386
plat: 386
- arch: arm32v7
plat: arm/v7
- arch: arm64v8
plat: arm64
- arch: ppc64le
plat: ppc64le
- arch: s390x
plat: s390x
- arch: riscv64
plat: riscv64

steps:
- uses: actions/checkout@v4

Expand All @@ -81,7 +93,7 @@ jobs:

- name: CMake and CTest
run: |
docker run -v "$PWD:/yyjson" ${{ matrix.arch }}/ubuntu bash -e -c '
docker run --platform linux/${{ matrix.plat }} -v "$PWD:/yyjson" ${{ matrix.arch }}/ubuntu bash -e -c '
FORCE_COLOR=1
CLICOLOR_FORCE=1
apt-get update
Expand Down

0 comments on commit 369ba25

Please sign in to comment.