Skip to content

Commit f980983

Browse files
committed
ci: nits
1 parent cac389a commit f980983

2 files changed

Lines changed: 7 additions & 4 deletions

File tree

.github/workflows/build-linux.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ defaults:
1212
shell: bash
1313

1414
jobs:
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.
@@ -46,8 +46,10 @@ jobs:
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:

.github/workflows/build-macos.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
workflow_call:
66

77
jobs:
8-
build:
8+
build-macos:
99
runs-on: macos-latest
1010
steps:
1111
- uses: actions/checkout@master
@@ -39,7 +39,8 @@ jobs:
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:

0 commit comments

Comments
 (0)