-
Notifications
You must be signed in to change notification settings - Fork 1
283 lines (273 loc) · 13 KB
/
web-wasm.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
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
name: web-wasm
on:
push:
branches:
- 'master'
tags:
- 'v*'
pull_request:
branches:
- '*'
jobs:
dockcross-wasm-eval:
name: ${{ matrix.name }}-eval
runs-on: ubuntu-20.04
strategy:
matrix:
include:
# TODO: find out minimum wasm version that works
# The following version (emcc 2.04 with clang 12) fails,
# internal compiler error:
# clang++: /b/s/w/ir/cache/builder/emscripten-releases/llvm-project/clang/lib/AST/ExprConstant.cpp:5963:
# "base class initializers not in expected order"' failed.
# https://github.com/alifahrri/nmtools/runs/4816856132?check_suite_focus=true
#
# - name: web-wasm-2020
# image: web-wasm
# tag: 20201222-0217db3
- name: web-wasm-latest
image: web-wasm
tag: latest
steps:
- uses: actions/checkout@v2
- name: setup dockcross
run: docker run --rm dockcross/${{ matrix.image }}:${{ matrix.tag }} > ./dockcross-${{ matrix.name }}; chmod +x ./dockcross-${{ matrix.name }}
- uses: actions/cache@v2
id: cache
with:
path: ./build/${{ matrix.name }}
key: ${{ github.job }}-${{ matrix.name }}-${{ hashFiles('./**') }}
- name: setup doctest
run: bash scripts/download_doctest_header.sh -d include/
- name: build
run: |
./dockcross-${{ matrix.name }} bash -c "emcc -v"
./dockcross-${{ matrix.name }} bash -c 'mkdir -p build/${{ matrix.name }} && cd build/${{ matrix.name }}/ && cmake -DNMTOOLS_TEST_ALL=OFF -DNMTOOLS_TEST_ARRAY_EVAL=ON -DNMTOOLS_TEST_ARRAY_NN_EVAL=ON ../.. && make -j2 VERBOSE=1'
- name: run tests
run: ./dockcross-${{ matrix.name }} node build/${{ matrix.name }}/tests/array/numeric-tests-doctest.js
dockcross-wasm:
name: ${{ matrix.name }}
runs-on: ubuntu-20.04
strategy:
matrix:
include:
# TODO: find out minimum wasm version that works
# The following version (emcc 2.04 with clang 12) fails,
# internal compiler error:
# clang++: /b/s/w/ir/cache/builder/emscripten-releases/llvm-project/clang/lib/AST/ExprConstant.cpp:5963:
# "base class initializers not in expected order"' failed.
# https://github.com/alifahrri/nmtools/runs/4816856132?check_suite_focus=true
#
# - name: web-wasm-2020
# image: web-wasm
# tag: 20201222-0217db3
- name: web-wasm-latest
image: web-wasm
tag: latest
steps:
- uses: actions/checkout@v2
- name: setup dockcross
run: docker run --rm dockcross/${{ matrix.image }}:${{ matrix.tag }} > ./dockcross-${{ matrix.name }}; chmod +x ./dockcross-${{ matrix.name }}
- uses: actions/cache@v2
id: cache
with:
path: ./build/${{ matrix.name }}
key: ${{ github.job }}-${{ matrix.name }}-${{ hashFiles('./**') }}
- name: setup doctest
run: bash scripts/download_doctest_header.sh -d include/
- name: build
run: |
./dockcross-${{ matrix.name }} bash -c "emcc -v"
./dockcross-${{ matrix.name }} bash -c 'mkdir -p build/${{ matrix.name }} && cd build/${{ matrix.name }}/ && cmake ../.. -DNMTOOLS_TEST_ALL=OFF -DNMTOOLS_TEST_ARRAY_VIEW=ON -DNMTOOLS_TEST_ARRAY_UFUNCS=ON -DNMTOOLS_TEST_ARRAY_VIEW_NN=ON && make -j2 VERBOSE=1'
- name: run tests
run: ./dockcross-${{ matrix.name }} node build/${{ matrix.name }}/tests/array/numeric-tests-doctest.js
dockcross-wasm-index:
# NOTE: failing on github ci because of stack size
if: ${{ false }} # TODO: fix
name: ${{ matrix.name }}-index
runs-on: ubuntu-20.04
strategy:
matrix:
include:
# TODO: find out minimum wasm version that works
# The following version (emcc 2.04 with clang 12) fails,
# internal compiler error:
# clang++: /b/s/w/ir/cache/builder/emscripten-releases/llvm-project/clang/lib/AST/ExprConstant.cpp:5963:
# "base class initializers not in expected order"' failed.
# https://github.com/alifahrri/nmtools/runs/4816856132?check_suite_focus=true
#
# - name: web-wasm-2020
# image: web-wasm
# tag: 20201222-0217db3
- name: web-wasm-latest
image: web-wasm
tag: latest
steps:
- uses: actions/checkout@v2
- name: setup dockcross
run: docker run --rm dockcross/${{ matrix.image }}:${{ matrix.tag }} > ./dockcross-${{ matrix.name }}; chmod +x ./dockcross-${{ matrix.name }}
- uses: actions/cache@v2
id: cache
with:
path: ./build/${{ matrix.name }}
key: ${{ github.job }}-${{ matrix.name }}-${{ hashFiles('./**') }}
- name: setup doctest
run: bash scripts/download_doctest_header.sh -d include/
- name: build
run: |
./dockcross-${{ matrix.name }} bash -c "emcc -v"
./dockcross-${{ matrix.name }} bash -c 'mkdir -p build/${{ matrix.name }} && cd build/${{ matrix.name }}/ && cmake ../.. -DNMTOOLS_TEST_ALL=OFF -DNMTOOLS_TEST_ARRAY_INDEX=ON && make -j2 VERBOSE=1'
- name: run tests
run: ./dockcross-${{ matrix.name }} node build/${{ matrix.name }}/tests/array/numeric-tests-doctest.js
dockcross-wasm-misc:
name: ${{ matrix.name }}-misc
runs-on: ubuntu-20.04
strategy:
matrix:
include:
# TODO: find out minimum wasm version that works
# The following version (emcc 2.04 with clang 12) fails,
# internal compiler error:
# clang++: /b/s/w/ir/cache/builder/emscripten-releases/llvm-project/clang/lib/AST/ExprConstant.cpp:5963:
# "base class initializers not in expected order"' failed.
# https://github.com/alifahrri/nmtools/runs/4816856132?check_suite_focus=true
#
# - name: web-wasm-2020
# image: web-wasm
# tag: 20201222-0217db3
- name: web-wasm-latest
image: web-wasm
tag: latest
steps:
- uses: actions/checkout@v2
- name: setup dockcross
run: docker run --rm dockcross/${{ matrix.image }}:${{ matrix.tag }} > ./dockcross-${{ matrix.name }}; chmod +x ./dockcross-${{ matrix.name }}
- uses: actions/cache@v2
id: cache
with:
path: ./build/${{ matrix.name }}
key: ${{ github.job }}-${{ matrix.name }}-${{ hashFiles('./**') }}
- name: setup doctest
run: bash scripts/download_doctest_header.sh -d include/
- name: build
run: |
./dockcross-${{ matrix.name }} bash -c "emcc -v"
./dockcross-${{ matrix.name }} bash -c 'mkdir -p build/${{ matrix.name }} && cd build/${{ matrix.name }}/ && cmake ../.. -DNMTOOLS_TEST_ALL=OFF -DNMTOOLS_TEST_NDARRAY=ON -DNMTOOLS_TEST_ARRAY_UTILITY=ON -DNMTOOLS_TEST_UTILS=ON -DNMTOOLS_TEST_NDARRAY=ON -DNMTOOLS_TEST_COMPOSITION=ON -DNMTOOLS_TEST_FUNCTIONAL=ON -DNMTOOLS_TEST_MISC=ON && make -j2 VERBOSE=1'
- name: run tests
run: ./dockcross-${{ matrix.name }} node build/${{ matrix.name }}/tests/array/numeric-tests-doctest.js
dockcross-wasm-constexpr-eval:
name: ${{ matrix.name }}-constexpr-eval
runs-on: ubuntu-20.04
strategy:
matrix:
include:
# TODO: find out minimum wasm version that works
# The following version (emcc 2.04 with clang 12) fails,
# internal compiler error:
# clang++: /b/s/w/ir/cache/builder/emscripten-releases/llvm-project/clang/lib/AST/ExprConstant.cpp:5963:
# "base class initializers not in expected order"' failed.
# https://github.com/alifahrri/nmtools/runs/4816856132?check_suite_focus=true
#
# - name: web-wasm-2020
# image: web-wasm
# tag: 20201222-0217db3
- name: web-wasm-latest
image: web-wasm
tag: latest
steps:
- uses: actions/checkout@v2
- name: setup dockcross
run: docker run --rm dockcross/${{ matrix.image }}:${{ matrix.tag }} > ./dockcross-${{ matrix.name }}; chmod +x ./dockcross-${{ matrix.name }}
- uses: actions/cache@v2
id: cache
with:
path: ./build/${{ matrix.name }}
key: ${{ github.job }}-${{ matrix.name }}-${{ hashFiles('./**') }}
- name: setup doctest
run: bash scripts/download_doctest_header.sh -d include/
- name: build
run: |
./dockcross-${{ matrix.name }} bash -c "emcc -v"
./dockcross-${{ matrix.name }} bash -c 'mkdir -p build/${{ matrix.name }} && cd build/${{ matrix.name }}/ && cmake -DNMTOOLS_BUILD_CONSTEXPR_TESTS=ON -DNMTOOLS_BUILD_META_TESTS=OFF -DNMTOOLS_BUILD_UTL_TESTS=OFF -DNMTOOLS_TEST_ALL=OFF -DNMTOOLS_TEST_ARRAY_EVAL=ON ../.. && make -j2 VERBOSE=1'
- name: run tests
run: ./dockcross-${{ matrix.name }} node build/${{ matrix.name }}/tests/array/numeric-tests-doctest.js
dockcross-wasm-constexpr-generic-ndarray-eval:
# NOTE: failing on github ci because of stack size
# Stack overflow detected. You can try increasing -sSTACK_SIZE (currently set to 65536)
# TODO: fix
if: ${{ false }}
name: ${{ matrix.name }}-constexpr-generic-ndarray-eval
runs-on: ubuntu-20.04
strategy:
matrix:
include:
# TODO: find out minimum wasm version that works
# The following version (emcc 2.04 with clang 12) fails,
# internal compiler error:
# clang++: /b/s/w/ir/cache/builder/emscripten-releases/llvm-project/clang/lib/AST/ExprConstant.cpp:5963:
# "base class initializers not in expected order"' failed.
# https://github.com/alifahrri/nmtools/runs/4816856132?check_suite_focus=true
#
# - name: web-wasm-2020
# image: web-wasm
# tag: 20201222-0217db3
- name: web-wasm-latest
image: web-wasm
tag: latest
steps:
- uses: actions/checkout@v2
- name: setup dockcross
run: docker run --rm dockcross/${{ matrix.image }}:${{ matrix.tag }} > ./dockcross-${{ matrix.name }}; chmod +x ./dockcross-${{ matrix.name }}
- uses: actions/cache@v2
id: cache
with:
path: ./build/${{ matrix.name }}
key: ${{ github.job }}-${{ matrix.name }}-${{ hashFiles('./**') }}
- name: setup doctest
run: bash scripts/download_doctest_header.sh -d include/
- name: build
run: |
./dockcross-${{ matrix.name }} bash -c "emcc -v"
./dockcross-${{ matrix.name }} bash -c 'mkdir -p build/${{ matrix.name }} && cd build/${{ matrix.name }}/ && cmake -DNMTOOLS_BUILD_CONSTEXPR_TESTS=ON -DNMTOOLS_BUILD_META_TESTS=OFF -DNMTOOLS_BUILD_UTL_TESTS=OFF -DNMTOOLS_TEST_ALL=OFF -DNMTOOLS_TEST_ARRAY_EVAL=ON -DNMTOOLS_TESTING_GENERIC_NDARRAY=ON -DNMTOOLS_TESTING_NOSTL=OFF ../.. && make -j2 VERBOSE=1'
- name: run tests
run: ./dockcross-${{ matrix.name }} node build/${{ matrix.name }}/tests/array/numeric-tests-doctest.js
dockcross-wasm-constexpr-no-stl-generic-ndarray-eval:
# NOTE: failing on github ci because of stack size
# Stack overflow detected. You can try increasing -sSTACK_SIZE (currently set to 65536)
# TODO: fix
if: ${{ false }}
name: ${{ matrix.name }}-constexpr-no-stl-generic-ndarray-eval
runs-on: ubuntu-20.04
strategy:
matrix:
include:
# TODO: find out minimum wasm version that works
# The following version (emcc 2.04 with clang 12) fails,
# internal compiler error:
# clang++: /b/s/w/ir/cache/builder/emscripten-releases/llvm-project/clang/lib/AST/ExprConstant.cpp:5963:
# "base class initializers not in expected order"' failed.
# https://github.com/alifahrri/nmtools/runs/4816856132?check_suite_focus=true
#
# - name: web-wasm-2020
# image: web-wasm
# tag: 20201222-0217db3
- name: web-wasm-latest
image: web-wasm
tag: latest
steps:
- uses: actions/checkout@v2
- name: setup dockcross
run: docker run --rm dockcross/${{ matrix.image }}:${{ matrix.tag }} > ./dockcross-${{ matrix.name }}; chmod +x ./dockcross-${{ matrix.name }}
- uses: actions/cache@v2
id: cache
with:
path: ./build/${{ matrix.name }}
key: ${{ github.job }}-${{ matrix.name }}-${{ hashFiles('./**') }}
- name: setup doctest
run: bash scripts/download_doctest_header.sh -d include/
- name: build
run: |
./dockcross-${{ matrix.name }} bash -c "emcc -v"
./dockcross-${{ matrix.name }} bash -c 'mkdir -p build/${{ matrix.name }} && cd build/${{ matrix.name }}/ && cmake -DNMTOOLS_BUILD_CONSTEXPR_TESTS=ON -DNMTOOLS_BUILD_META_TESTS=OFF -DNMTOOLS_BUILD_UTL_TESTS=OFF -DNMTOOLS_TEST_ALL=OFF -DNMTOOLS_TEST_ARRAY_EVAL=ON -DNMTOOLS_TESTING_GENERIC_NDARRAY=ON -DNMTOOLS_TESTING_NOSTL=ON ../.. && make -j2 VERBOSE=1'
- name: run tests
run: ./dockcross-${{ matrix.name }} node build/${{ matrix.name }}/tests/array/numeric-tests-doctest.js