File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ defaults:
1212 shell : bash
1313
1414jobs :
15- build :
15+ build-linux :
1616 runs-on : ubuntu-22.04
1717 # We prefer slightly older Ubuntu so we get binaries that work on
1818 # all more recent versions.
4646 eval $(opam env)
4747 KERNEL=$(uname -s)
4848 ARCH=$(uname -m)
49- make -skj$(nproc) package FSTAR_TAG=-$KERNEL-$ARCH
49+ export FSTAR_TAG=-$KERNEL-$ARCH
50+ make -skj$(nproc) package
5051 make -skj$(nproc) package-src FSTAR_TAG=
52+ # ^ no tag in source package
5153
5254 - uses : actions/upload-artifact@v4
5355 with :
Original file line number Diff line number Diff line change 55 workflow_call :
66
77jobs :
8- build :
8+ build-macos :
99 runs-on : macos-latest
1010 steps :
1111 - uses : actions/checkout@master
3939 eval $(opam env)
4040 KERNEL=$(uname -s)
4141 ARCH=$(uname -m)
42- gmake -skj$(nproc) package FSTAR_TAG=-$KERNEL-$ARCH
42+ export FSTAR_TAG=-$KERNEL-$ARCH
43+ gmake -skj$(nproc) package
4344
4445 - uses : actions/upload-artifact@v4
4546 with :
You can’t perform that action at this time.
0 commit comments