File tree 1 file changed +26
-2
lines changed
1 file changed +26
-2
lines changed Original file line number Diff line number Diff line change 11
11
- main
12
12
13
13
jobs :
14
- native-build-test-workflow :
14
+ itk-wasm- native-build-test :
15
15
runs-on : ubuntu-22.04
16
16
17
17
steps :
21
21
22
22
- name : Build and Test ITK-Wasm
23
23
run : |
24
- pixi run test-itk-wasm
24
+ pixi run test-itk-wasm
25
+
26
+ - name : Upload ITK-Wasm build artifacts
27
+ uses : actions/upload-artifact@v4
28
+ with :
29
+ name : itk-wasm-build
30
+ path : .
31
+
32
+ packages-native-build-test :
33
+ needs : itk-wasm-native-build-test
34
+ runs-on : ${{ matrix.os }}
35
+ strategy :
36
+ matrix :
37
+ package : [compare-images]
38
+ os : [ubuntu-latest]
39
+ steps :
40
+ - name : Download ITK-Wasm build artifacts
41
+ uses : actions/download-artifact@v4
42
+ with :
43
+ name : itk-wasm-build
44
+
45
+ - name : Build and Test Package
46
+ run : |
47
+ echo "Running on ${{ matrix.os }} for package ${{ matrix.package }}"
48
+ pixi run test-${{ matrix.package }}
You can’t perform that action at this time.
0 commit comments