We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fefc539 commit 3a624d8Copy full SHA for 3a624d8
1 file changed
.github/workflows/stress.yml
@@ -36,9 +36,20 @@ jobs:
36
uses: actions/checkout@v4
37
38
- name: Install dependencies
39
+ if: matrix.os != ubuntu-latest
40
run: |
41
brew install cfitsio python3
42
43
+ - name: Install ubuntu dependencies
44
+ if: matrix.os == ubuntu-latest
45
+ run: |
46
+ sudo apt-get update && sudo apt-get install --no-install-recommends -y \
47
+ llvm-dev \
48
+ libcfitsio-dev \
49
+ pkg-config \
50
+ libssl-dev \
51
+ python3
52
+
53
- name: Install toolchain
54
uses: dtolnay/rust-toolchain@master
55
with:
0 commit comments