File tree Expand file tree Collapse file tree 1 file changed +22
-6
lines changed Expand file tree Collapse file tree 1 file changed +22
-6
lines changed Original file line number Diff line number Diff line change 16
16
sudo apt install valgrind
17
17
make valgrind CFLAGS=-fPIC
18
18
19
- - &upload
20
- name : Upload
19
+ # note: this can be made into anchor when they are supported. See https://github.com/actions/runner/issues/1182
20
+ - name : Upload
21
21
uses : actions/upload-artifact@v4
22
22
with :
23
23
name : ${{ github.job }}
32
32
- name : make run
33
33
run : make run WASM=1
34
34
35
- - *upload
35
+ - name : Upload
36
+ uses : actions/upload-artifact@v4
37
+ with :
38
+ name : ${{ github.job }}
39
+ path : .
36
40
37
41
build-win :
38
42
runs-on : windows-latest
42
46
- name : make run
43
47
run : make run CFLAGS=-fPIC
44
48
45
- - *upload
49
+ - name : Upload
50
+ uses : actions/upload-artifact@v4
51
+ with :
52
+ name : ${{ github.job }}
53
+ path : .
46
54
47
55
build-macos-intel :
48
56
runs-on : macos-13
52
60
- name : make run
53
61
run : make run CFLAGS=-fPIC
54
62
55
- - *upload
63
+ - name : Upload
64
+ uses : actions/upload-artifact@v4
65
+ with :
66
+ name : ${{ github.job }}
67
+ path : .
56
68
57
69
build-macos-arm64 :
58
70
needs : build-macos-intel # to build multi-arch lib
69
81
# create muilti-arch lib
70
82
lipo -create ./build-macos-intel/lib/k08.a ./lib/k08.a -output lib/k08_macos.a
71
83
72
- - *upload
84
+ - name : Upload
85
+ uses : actions/upload-artifact@v4
86
+ with :
87
+ name : ${{ github.job }}
88
+ path : .
73
89
74
90
collect-libs :
75
91
runs-on : ubuntu-latest
You can’t perform that action at this time.
0 commit comments