-
-
Notifications
You must be signed in to change notification settings - Fork 349
120 lines (111 loc) · 3.66 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
110
111
112
113
114
115
116
117
118
119
120
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
PACT_BROKER_BASE_URL: ${{ secrets.PACT_BROKER_BASE_URL }}
PACT_BROKER_TOKEN: ${{ secrets.PACT_BROKER_TOKEN }}
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-13, ubuntu-latest, windows-latest]
docker: [false]
alpine: [false]
include:
- os: ubuntu-latest
docker: true
alpine: true
arch: amd64
node-version: 22
- os: ubuntu-latest
docker: true
alpine: true
arch: amd64
node-version: 20
- os: ubuntu-latest
docker: true
alpine: true
arch: amd64
node-version: 18
# ARM64 Builds under Qemu
- 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: 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: arm64
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@v4
with:
fetch-depth: 0
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
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 }}
GITHUB_ACTIONS: ${{ env.GITHUB_ACTIONS }}
SKIP_EXAMPLES: true
- if: ${{ matrix.docker == true && matrix.alpine == true && matrix.arch == 'amd64' }}
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 }}
GITHUB_ACTIONS: ${{ env.GITHUB_ACTIONS }}
- if: ${{ matrix.docker == true && matrix.alpine == true && matrix.arch == 'arm64' }}
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 }}
GITHUB_ACTIONS: ${{ env.GITHUB_ACTIONS }}
SKIP_EXAMPLES: true