Skip to content

Commit

Permalink
Fix Github Actions (#1355)
Browse files Browse the repository at this point in the history
* Disable building libconsensus for Windows in CI

* setuptools workaround for macOS
  • Loading branch information
justanwar authored Nov 14, 2023
1 parent 1bf370c commit 2467c94
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/ci-master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ jobs:
working-directory: ${{ env.SOURCE_ARTIFACT }}
- name: Build Firo
run: |
./configure --disable-jni --enable-elysium --prefix=$(realpath depends/x86_64-w64-mingw32)
./configure --without-libs --disable-jni --enable-elysium --prefix=$(realpath depends/x86_64-w64-mingw32)
make -j$(nproc)
working-directory: ${{ env.SOURCE_ARTIFACT }}
- name: Prepare Files for Artifact
Expand Down Expand Up @@ -173,6 +173,9 @@ jobs:
run: sudo xcode-select -s /Applications/Xcode.app/Contents/Developer
- name: Install Required Packages
run: brew install automake coreutils pkg-config
# Workaround for macOS: https://github.com/actions/runner/issues/2958
- name: Install setuptools
run: sudo -H pip install setuptools
- name: Build Dependencies
run: make -C depends -j$(sysctl -n hw.activecpu)
working-directory: ${{ env.SOURCE_ARTIFACT }}
Expand Down

0 comments on commit 2467c94

Please sign in to comment.