File tree 3 files changed +5
-5
lines changed
3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 21
21
with :
22
22
fetch-depth : 1
23
23
- name : config
24
- run : xmake config --yes -vD
24
+ run : xmake config --yes -vD -a ${{ matrix.arch }}
25
25
- name : build
26
26
run : xmake build --yes -vD s7
27
27
- name : install
Original file line number Diff line number Diff line change 22
22
with :
23
23
fetch-depth : 1
24
24
- name : config
25
- run : xmake config --yes -vD -m releasedbg
25
+ run : xmake config --yes -vD -m releasedbg -a ${{ matrix.arch }}
26
26
- name : build
27
27
run : xmake build --yes -vD s7
28
- - name : test
29
- run : xmake run --yes -vD plus.scm
30
-
Original file line number Diff line number Diff line change @@ -29,6 +29,9 @@ target("s7") do
29
29
else
30
30
print (" Unsupported platform!!!" )
31
31
end
32
+ if is_plat (" macosx" ) and is_arch (" arm64" ) then
33
+ os .exec (" codesign --force --sign - $(buildir)/s7_macosx_arm64" )
34
+ end
32
35
end )
33
36
end
34
37
You can’t perform that action at this time.
0 commit comments