Skip to content

Commit

Permalink
ci(actions): Avoid parallel build bugs in Homebrew's make
Browse files Browse the repository at this point in the history
  • Loading branch information
alerque committed Dec 7, 2024
1 parent 3c3cae2 commit db87128
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,8 @@ jobs:
--with-system-lua-sources \
--with-manual
echo "VERSION=$(./build-aux/git-version-gen .tarball-version)" >> $GITHUB_ENV
echo "MAKEFLAGS=-j$(sysctl -n hw.ncpu) -Otarget" >> $GITHUB_ENV
# Note don't use -Otarget for macOS, Homebrew's old make is too buggy
echo "MAKEFLAGS=-j$(sysctl -n hw.ncpu)" >> $GITHUB_ENV
- name: Make
run: |
make
Expand Down

0 comments on commit db87128

Please sign in to comment.