Skip to content

Commit

Permalink
ci: nits
Browse files Browse the repository at this point in the history
  • Loading branch information
mtzguido committed Jan 11, 2025
1 parent cac389a commit f980983
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/build-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ defaults:
shell: bash

jobs:
build:
build-linux:
runs-on: ubuntu-22.04
# We prefer slightly older Ubuntu so we get binaries that work on
# all more recent versions.
Expand Down Expand Up @@ -46,8 +46,10 @@ jobs:
eval $(opam env)
KERNEL=$(uname -s)
ARCH=$(uname -m)
make -skj$(nproc) package FSTAR_TAG=-$KERNEL-$ARCH
export FSTAR_TAG=-$KERNEL-$ARCH
make -skj$(nproc) package
make -skj$(nproc) package-src FSTAR_TAG=
# ^ no tag in source package
- uses: actions/upload-artifact@v4
with:
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/build-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
workflow_call:

jobs:
build:
build-macos:
runs-on: macos-latest
steps:
- uses: actions/checkout@master
Expand Down Expand Up @@ -39,7 +39,8 @@ jobs:
eval $(opam env)
KERNEL=$(uname -s)
ARCH=$(uname -m)
gmake -skj$(nproc) package FSTAR_TAG=-$KERNEL-$ARCH
export FSTAR_TAG=-$KERNEL-$ARCH
gmake -skj$(nproc) package
- uses: actions/upload-artifact@v4
with:
Expand Down

0 comments on commit f980983

Please sign in to comment.