Skip to content

Commit

Permalink
Update create_release.yml
Browse files Browse the repository at this point in the history
Installing boost for macosx-13
  • Loading branch information
jarathomas authored May 31, 2024
1 parent 39dd4f6 commit 760eb49
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/create_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,15 @@ jobs:
- name: Set up poetry
run: |
pipx install poetry
- name: Install boost for Mac
if: runner.os == 'macOS'
run: |
brew update
brew install boost
echo "LDFLAGS=-L/opt/homebrew/Cellar/lib" >> "$GITHUB_ENV"
echo "CPPFLAGS=-I/opt/homebrew/include" >> "$GITHUB_ENV"
- name: Install dependencies
run: |
poetry run pip install --upgrade pip
poetry install
- name: Install dependencies of macOS
if: runner.os == 'macOS'
Expand Down

0 comments on commit 760eb49

Please sign in to comment.