Skip to content

Commit

Permalink
Manually install gcc for macos builds
Browse files Browse the repository at this point in the history
  • Loading branch information
CarlBeek committed May 13, 2024
1 parent 2f76908 commit 1dea225
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,9 @@ jobs:
- checkout
- run:
name: Install building requirements on MacOS
command: pip3 install -r ./build_configs/macos/requirements.txt
command: |
brew install gcc;
pip3 install -r ./build_configs/macos/requirements.txt;
- run:
name: Build with build.spec
command: |
Expand Down

0 comments on commit 1dea225

Please sign in to comment.