diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7401daf..62c7109 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -31,12 +31,25 @@ jobs: - arm64v8 - ppc64le - s390x - runs-on: ubuntu-latest + runs-on: ${{ (matrix.arch == 's390x' && 'macos') + || 'ubuntu' }}-latest steps: - uses: actions/checkout@v4 with: fetch-depth: 0 # for correct image labeling via `git describe --tags` + - name: Setup Docker for MacOS + run: | + set -ex + brew install colima docker docker-buildx + mkdir -p /Users/runner/.docker/cli-plugins/ + ln -sfn /usr/local/opt/docker-buildx/bin/docker-buildx \ + /Users/runner/.docker/cli-plugins/docker-buildx + colima start + if: ${{ matrix.arch == 's390x' }} + - uses: docker/setup-qemu-action@v3 + if: ${{ matrix.arch == 's390x' }} - uses: docker/setup-buildx-action@v3 + if: ${{ matrix.arch != 's390x' }} - run: make docker.image no-cache=yes platform=${{ matrix.os }}/${{ matrix.arch }} diff --git a/CHANGELOG.md b/CHANGELOG.md index 5f5e6d6..dbf55c2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,7 @@ All user visible changes to this project will be documented in this file. This p -## [3.0.2-node18-r2] · 2023-10-04 +## [3.0.2-node18-r2] · 2023-10-05 [3.0.2-node18-r2]: /../../tree/v3.0.2-node18-r2 [Diff](/../../compare/v3.0.2-node18-r1...v3.0.2-node18-r2)