Skip to content

Commit

Permalink
[CI] Prevent occasional missing apt package errors on .NET build
Browse files Browse the repository at this point in the history
  • Loading branch information
speth committed Mar 29, 2024
1 parent 55d4dc8 commit ed27faf
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -784,7 +784,9 @@ jobs:
run: brew install --display-times hdf5
if: matrix.os == 'macos-11'
- name: Install Apt dependencies (Ubuntu)
run: sudo apt install libhdf5-dev libfmt-dev
run: |
sudo apt update
sudo apt install libhdf5-dev libfmt-dev
if: matrix.os == 'ubuntu-22.04'
- name: Setup .NET Core SDK
uses: actions/setup-dotnet@v2
Expand Down

0 comments on commit ed27faf

Please sign in to comment.