Skip to content

Commit

Permalink
Use boost 1.85 for macOS
Browse files Browse the repository at this point in the history
  • Loading branch information
AxVultis committed Feb 12, 2025
1 parent ba93314 commit 1493ead
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -470,14 +470,14 @@ jobs:
- name: Install dependencies
run: |
brew install boost
brew install boost@1.85
- name: Build
id: build
run: |
mkdir build
cd build
cmake .. -DCMAKE_BUILD_TYPE=Release -DBUILD_TESTS=ON -DSTATIC=ON
cmake .. -DCMAKE_BUILD_TYPE=Release -DBUILD_TESTS=ON -DSTATIC=ON -DBOOST_ROOT=/usr/local/opt/boost@1.85
make -j2
- name: Prepare release
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/macOS.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ jobs:
build_folder="build/"
ccx_version=$(echo ${{ github.ref }} | sed 's|refs/tags/||')
release_name="ccx-cli-macOS-v$ccx_version"
brew install gcc boost
brew install gcc boost@1.85
mkdir "$build_folder"
cd "$build_folder"
cmake -DCMAKE_C_FLAGS="-mmacosx-version-min=10.12" -DCMAKE_CXX_FLAGS="-mmacosx-version-min=10.12" -DCMAKE_BUILD_TYPE=Release -DSTATIC=ON ..
cmake -DCMAKE_C_FLAGS="-mmacosx-version-min=10.12" -DCMAKE_CXX_FLAGS="-mmacosx-version-min=10.12" -DCMAKE_BUILD_TYPE=Release -DSTATIC=ON -DBOOST_ROOT=/usr/local/opt/boost@1.85 ..
make -j2
mkdir "$release_name"
exeFiles=()
Expand Down

0 comments on commit 1493ead

Please sign in to comment.