-
Notifications
You must be signed in to change notification settings - Fork 21
153 lines (150 loc) · 4.24 KB
/
ci.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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
name: CI
on:
push:
pull_request:
env:
PYTHON_VERSION: '3.11'
jobs:
test-native:
runs-on: ${{matrix.os}}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macOS-latest, windows-latest]
node-version: [18.x, 20.x, 22.x, 23.x]
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: true
- name: Set up Node.js ${{matrix.node-version}}
uses: actions/setup-node@v4
with:
node-version: ${{matrix.node-version}}
# npm<10.2.3 ships a version of node-gyp that doesn't support Python>3.11.
- name: Set up Python ${{env.PYTHON_VERSION}}
uses: actions/setup-python@v5
with:
python-version: ${{env.PYTHON_VERSION}}
- name: Build
run: npm install --pqclean-backend=native
- name: Test
run: npm test
build-wasm:
runs-on: ubuntu-latest
env:
NODE_VERSION: 20.x
EMSDK_VERSION: 3.1.72
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: true
- name: Set up Node.js ${{env.NODE_VERSION}}
uses: actions/setup-node@v4
with:
node-version: ${{env.NODE_VERSION}}
- name: Set up Emscripten SDK ${{env.EMSDK_VERSION}}
uses: mymindstorm/setup-emsdk@v14
with:
version: ${{env.EMSDK_VERSION}}
- name: Install dependencies
run: npm install --ignore-scripts
- name: Build WebAssembly module
run: npm run build-wasm
- name: Upload build output
uses: actions/upload-artifact@v4
with:
name: wasm-gen
path: |
wasm/gen
if-no-files-found: error
test-wasm:
needs: build-wasm
runs-on: ${{matrix.os}}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macOS-latest, windows-latest]
node-version: [18.x, 20.x, 22.x, 23.x]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Node.js ${{matrix.node-version}}
uses: actions/setup-node@v4
with:
node-version: ${{matrix.node-version}}
- name: Download WebAssembly module
uses: actions/download-artifact@v4
with:
name: wasm-gen
path: wasm/gen
- name: Install
run: npm install --pqclean-backend=wasm
- name: Test
run: npm test
build-web:
needs: build-wasm
runs-on: ubuntu-latest
env:
NODE_VERSION: 20.x
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Node.js ${{env.NODE_VERSION}}
uses: actions/setup-node@v4
with:
node-version: ${{env.NODE_VERSION}}
- name: Download WebAssembly module
uses: actions/download-artifact@v4
with:
name: wasm-gen
path: wasm/gen
- name: Build web distribution
run: npm run build-web
- name: Upload build output
uses: actions/upload-artifact@v4
with:
name: web-dist
path: |
web/dist
if-no-files-found: error
test-web:
needs: build-web
runs-on: ${{matrix.os}}
strategy:
fail-fast: false
matrix:
mode: [deno, chrome]
os: [ubuntu-latest, macOS-latest, windows-latest]
env:
NODE_VERSION: 20.x
DENO_VERSION: 2.1.x
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: true
- name: Set up Node.js ${{env.NODE_VERSION}}
uses: actions/setup-node@v4
with:
node-version: ${{env.NODE_VERSION}}
- name: Set up Deno ${{env.DENO_VERSION}}
if: matrix.mode == 'deno'
uses: denoland/setup-deno@v2
with:
deno-version: ${{env.DENO_VERSION}}
- name: Download web distribution
uses: actions/download-artifact@v4
with:
name: web-dist
path: web/dist
# npm<10.2.3 ships a version of node-gyp that doesn't support Python>3.11.
- name: Set up Python ${{env.PYTHON_VERSION}}
uses: actions/setup-python@v5
with:
python-version: ${{env.PYTHON_VERSION}}
- name: Install
run: npm install
- name: Test
run: npm run test-web ${{matrix.mode}}