-
-
Notifications
You must be signed in to change notification settings - Fork 5
223 lines (206 loc) · 7.6 KB
/
test-dev.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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Node.js CI
on:
push:
branches: ["*"]
paths-ignore:
- 'CHANGELOG.md'
- 'README.md'
pull_request:
branches: main
paths-ignore:
- 'CHANGELOG.md'
- 'README.md'
jobs:
native:
runs-on: ${{ matrix.platform }}
strategy:
fail-fast: false
matrix:
platform: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
submodules: true
- name: Use Node.js 18.x
uses: actions/setup-node@v3
with:
node-version: 18.x
- uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Cache conan artifacts
id: conan-artifacts
uses: actions/cache@v3
with:
path: ~/.conan
key: ${{ runner.os }}-conan
- name: Install fonts on Ubuntu
run: |
[[ '${{ matrix.platform }}' =~ 'ubuntu' ]] && sudo apt-get install -y fonts-ubuntu || true
shell: bash
- run: npm install --ignore-scripts
- run: npm run deps:download
- run: npx @mapbox/node-pre-gyp configure
- name: magick_configure.log
run: cat build/magick_configure.log
shell: bash
- run: npx @mapbox/node-pre-gyp build
- run: npx mocha test/node.test.ts test/integration.test.ts
env:
MOCHA_INTEGRATION: node
MOCHA_MAGICK_INSTALL: "node -e \"fs.symlinkSync(process.env.GITHUB_WORKSPACE, path.resolve('node_modules', 'magickwand.js'), os.platform() == 'win32' ? 'junction': 'dir')\""
native-light:
runs-on: ${{ matrix.platform }}
strategy:
fail-fast: false
matrix:
platform: [ubuntu-latest]
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
submodules: true
- name: Use Node.js 18.x
uses: actions/setup-node@v3
with:
node-version: 18.x
- name: Cache conan artifacts
id: conan-artifacts
uses: actions/cache@v3
with:
path: ~/.conan
key: ${{ runner.os }}-conan
- name: Install fonts on Ubuntu
run: |
[[ '${{ matrix.platform }}' =~ 'ubuntu' ]] && sudo apt-get install -y fonts-ubuntu || true
shell: bash
- run: npm install --ignore-scripts
- run: npm run deps:download
- name: Configure light version
run: |
npx @mapbox/node-pre-gyp configure \
--fonts=false --jpeg=true --png=false --tiff=false \
--webp=false --jpeg2000=false --raw=false --openmedia=false \
--brotli=false --h265=false --exr=false --fftw=false --heif=false \
--jbig=true --cms=false --xml=false --gzip=false --zip=false \
--bzip2=true --zstd=false --xz=false --lzma=false --simd=false \
--openmp=true --display=false
- name: magick_configure.log
run: cat build/magick_configure.log
shell: bash
- run: npx @mapbox/node-pre-gyp build
wasm:
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
submodules: true
- name: Use Node.js 18.x
uses: actions/setup-node@v3
with:
node-version: 18.x
- name: Cache conan artifacts
id: conan-artifacts
uses: actions/cache@v3
with:
path: ~/.conan
key: wasm-conan
- run: npm install --ignore-scripts
- run: npm run deps:download
- run: npx @mapbox/node-pre-gyp configure --nodedir=./emscripten --target_arch=wasm32 --target_platform=emscripten
- name: magick_configure.log
run: cat build/magick_configure.log
shell: bash
- run: npx @mapbox/node-pre-gyp build
- name: Check size
run: |
echo "::notice::Default WASM version is $(( `gzip -9c lib/binding/emscripten-wasm32/magickwand.wasm | wc -c` / 1024 )) KBytes gzipped"
echo "::notice::Default WASM version is $(( `brotli -9c lib/binding/emscripten-wasm32/magickwand.wasm | wc -c` / 1024 )) KBytes brotlied"
- name: Run headless test
uses: GabrielBB/xvfb-action@v1
env:
MOCHA_INTEGRATION: browser
MOCHA_MAGICK_INSTALL: ln -s ${{ github.workspace }} node_modules/magickwand.js
with:
run: npx mocha test/browser.test.ts test/integration.test.ts
wasm-light:
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
submodules: true
- name: Use Node.js 18.x
uses: actions/setup-node@v3
with:
node-version: 18.x
- name: Cache conan artifacts
id: conan-artifacts
uses: actions/cache@v3
with:
path: ~/.conan
key: wasm-light-conan
- run: npm install --ignore-scripts
- run: npm run deps:download
- name: Configure light version
run: |
npx @mapbox/node-pre-gyp configure \
--nodedir=./emscripten --target_arch=wasm32 --target_platform=emscripten \
--fonts=false --jpeg=false --png=false --tiff=false \
--webp=false --jpeg2000=false --raw=false --openmedia=false \
--brotli=false --h265=false --exr=false --fftw=false --heif=false \
--jbig=false --cms=false --xml=false --gzip=false --zip=false \
--bzip2=false --zstd=false --xz=false --lzma=false --simd=false \
--openmp=false --display=false
- name: magick_configure.log
run: cat build/magick_configure.log
shell: bash
- run: npx @mapbox/node-pre-gyp build
- name: Check size
run: |
echo "::notice::Light WASM version is $(( `gzip -9c lib/binding/emscripten-wasm32/magickwand.wasm | wc -c` / 1024 )) KBytes gzipped"
echo "::notice::Light WASM version is $(( `brotli -9c lib/binding/emscripten-wasm32/magickwand.wasm | wc -c` / 1024 )) KBytes brotlied"
debug-asan:
runs-on: ${{ matrix.platform }}
strategy:
fail-fast: false
matrix:
platform: [ubuntu-22.04]
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
submodules: true
- name: Use Node.js 18.x
uses: actions/setup-node@v3
with:
node-version: 18.x
- name: Cache conan artifacts
id: conan-artifacts
uses: actions/cache@v3
with:
path: ~/.conan
key: asan-conan
- name: Install fonts on Ubuntu
run: |
[[ '${{ matrix.platform }}' =~ 'ubuntu' ]] && sudo apt-get install -y fonts-ubuntu || true
shell: bash
- run: npm install --ignore-scripts
- run: npm run deps:download
- run: npx @mapbox/node-pre-gyp configure --debug --enable_asan
- name: magick_configure.log
run: cat build/magick_configure.log
shell: bash
- run: npx @mapbox/node-pre-gyp build
- run: node node_modules/mocha/bin/mocha.js -i -g Security --repeats 1000 test/node.test.ts
env:
LD_PRELOAD: /usr/lib/x86_64-linux-gnu/libasan.so.6
LSAN_OPTIONS: suppressions=${{ github.workspace }}/test/napi-leaks-suppression.txt