Skip to content

Commit

Permalink
refactor(ci/macos): install additional dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Curve committed Jun 9, 2024
1 parent 99a3199 commit 627b40b
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,12 @@ jobs:
with:
os: ${{ matrix.os }}

- name: 📋 Install MacOS Dependencies
shell: bash
if: ${{ inputs.os == 'macos-latest' }}
run: |
brew install embree tbb
- name: 🦥 Cache Dependencies
uses: actions/cache@v4
with:
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,12 @@ jobs:
with:
os: ${{ matrix.os }}

- name: 📋 Install MacOS Dependencies
shell: bash
if: ${{ inputs.os == 'macos-latest' }}
run: |
brew install embree tbb
- name: 🦥 Cache Dependencies
uses: actions/cache@v4
with:
Expand Down

0 comments on commit 627b40b

Please sign in to comment.