Skip to content

ci: test docker - debian (arm64) / alpine (arm64/amd64) #2075

ci: test docker - debian (arm64) / alpine (arm64/amd64)

ci: test docker - debian (arm64) / alpine (arm64/amd64) #2075

Workflow file for this run

name: Build, test, test all examples
on:
push:
pull_request:
branches: [master, 9.x.x]
workflow_dispatch:
env:
GIT_COMMIT: ${{ github.sha }}
GIT_REF: ${{ github.ref }}
GIT_BRANCH: ${{ github.head_ref || github.ref_name }}
LOG_LEVEL: info
jobs:
build-and-test:
runs-on: ${{ matrix.os }}
defaults:
run:
shell: bash
strategy:
fail-fast: false
matrix:
node-version: [16, 18, 20, 22]
os: [macos-14, macos-12, ubuntu-latest, windows-latest]
docker: [false]
include:
- os: ubuntu-latest
docker: true
alpine: false
arch: arm64
node-version: 22
- os: ubuntu-latest
docker: true
alpine: true
arch: arm64
node-version: 22
- os: ubuntu-latest
docker: true
alpine: true
arch: amd64
node-version: 22
- os: ubuntu-latest
docker: true
alpine: false
arch: arm64
node-version: 20
- os: ubuntu-latest
docker: true
alpine: true
arch: arm64
node-version: 20
- os: ubuntu-latest
docker: true
alpine: true
arch: amd64
node-version: 20
- os: ubuntu-latest
docker: true
alpine: true
arch: arm64
node-version: 18
- os: ubuntu-latest
docker: true
alpine: true
arch: amd64
node-version: 18
name: Test ${{ matrix.docker == true && matrix.alpine == true && 'linux-musl' || matrix.docker == true && matrix.alpine == false && 'linux' || matrix.os }}-${{ matrix.arch }}-node-${{ matrix.node-version }}
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: scripts/ci/build-and-test.sh
if: ${{ matrix.docker != true }}
- name: Set up QEMU
if: ${{ matrix.docker == true && matrix.arch == 'arm64' }}
uses: docker/setup-qemu-action@v3
- if: ${{ matrix.docker == true && matrix.alpine != true && matrix.arch == 'arm64' }}
name: test arm64
run: |
docker build --platform linux/${{ matrix.arch }} --build-arg=NODE_VERSION=${{ matrix.node-version }} -f Dockerfile.debian -t pact-js:${{ matrix.node-version }}-debian .
docker run --platform linux/${{ matrix.arch }} -v $PWD:/home -w /home --rm pact-js:${{ matrix.node-version }}-debian
- if: ${{ matrix.docker == true && matrix.alpine == true }}
name: test linux amd64 musl
run: |
docker build --platform linux/${{ matrix.arch }} --build-arg=NODE_VERSION=${{ matrix.node-version }} -f Dockerfile.alpine -t pact-js:${{ matrix.node-version }}-alpine .
docker run --platform linux/${{ matrix.arch }} -v $PWD:/home -w /home --rm pact-js:${{ matrix.node-version }}-alpine