Skip to content

Commit

Permalink
Handle ubuntu and macos platforms
Browse files Browse the repository at this point in the history
  • Loading branch information
simonrw committed Jan 9, 2025
1 parent fefc539 commit 3024813
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/stress.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,20 @@ jobs:
uses: actions/checkout@v4

- name: Install dependencies
if: matrix.os != 'ubuntu-latest'
run: |
brew install cfitsio python3
- name: Install ubuntu dependencies
if: matrix.os == 'ubuntu-latest'
run: |
sudo apt-get update && sudo apt-get install --no-install-recommends -y \
llvm-dev \
libcfitsio-dev \
pkg-config \
libssl-dev \
python3
- name: Install toolchain
uses: dtolnay/rust-toolchain@master
with:
Expand Down

0 comments on commit 3024813

Please sign in to comment.