-
-
Notifications
You must be signed in to change notification settings - Fork 349
109 lines (100 loc) · 3.54 KB
/
build-and-test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
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 linux ${{ matrix.arch }} glibc
run: |
npm run docker:debian:build
npm run docker:debian:run
env:
DOCKER_DEFAULT_PLATFORM: linux/${{ matrix.arch }}
NODE_VERSION: ${{ matrix.node-version }}
# 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 ${{ matrix.arch }} musl
run: |
npm run docker:alpine:build
npm run docker:alpine:run
env:
DOCKER_DEFAULT_PLATFORM: linux/${{ matrix.arch }}
NODE_VERSION: ${{ matrix.node-version }}
# 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