File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -58,10 +58,14 @@ jobs:
58
58
run : npm ci --no-audit
59
59
- name : Build
60
60
run : npm run build
61
- - name : Bootstrap
61
+ - name : " Bootstrap ${{ matrix.target }} "
62
62
run : npm run bootstrap:${{ matrix.target }}
63
- - name : Test
63
+ - name : " Test ${{ matrix.target }} "
64
64
run : npm run test:compiler -- --wasm build/assemblyscript.${{ matrix.target }}-bootstrap.js
65
+ - name : " Compile ${{ matrix.target }} -> ${{ matrix.target == 'debug' && 'release' || 'debug' }}"
66
+ run : node bin/asc --config src/asconfig.json --target ${{ matrix.target == 'debug' && 'release' || 'debug' }}-bootstrap --wasm ./build/assemblyscript.${{ matrix.target }}-bootstrap.js
67
+ - name : " Test ${{ matrix.target == 'debug' && 'release' || 'debug' }}"
68
+ run : npm run test:compiler -- --wasm build/assemblyscript.${{ matrix.target == 'debug' && 'release' || 'debug' }}-bootstrap.js
65
69
features :
66
70
name : " Features"
67
71
runs-on : ubuntu-latest
You can’t perform that action at this time.
0 commit comments