Skip to content

Commit

Permalink
ci: Update package manager caches before installing
Browse files Browse the repository at this point in the history
  • Loading branch information
b-butler committed Jan 24, 2024
1 parent b8dd0f2 commit c7e6920
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/actions/install-nopython-dependencies/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,15 @@ runs:
- name: install-dependencies-linux
if: runner.os == 'Linux'
shell: bash
run: sudo apt-get install tbb tbblib eigen3 ninja
run: |
sudo apt-get update
sudo apt-get install tbb tbblib eigen3 ninja
- name: install-dependencies-macos
if: runner.os == 'macOS'
shell: bash
run: brew install tbb eigen3 ninja
run: |
brew update
brew install tbb eigen3 ninja
- name: install-dependencies-windows
if: runner.os == 'Windows'
shell: bash
Expand Down

0 comments on commit c7e6920

Please sign in to comment.