We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 848fe37 + 5cee032 commit 2f055bbCopy full SHA for 2f055bb
1 file changed
.github/workflows/openblas.yml
@@ -8,24 +8,26 @@ on:
8
9
jobs:
10
linux:
11
+ runs-on: ubuntu-18.04
12
+ container:
13
+ image: rust
14
strategy:
15
fail-fast: false
16
matrix:
17
feature:
- - system
18
- static
- runs-on: ubuntu-18.04
19
+ - system
20
steps:
21
- uses: actions/checkout@v1
22
- name: apt install gfortran
23
run: |
- sudo apt update
- sudo apt install -y gfortran
24
- - name: apt install openblas
+ apt update
25
+ apt install -y gfortran
26
+ - name: Install OpenBLAS by apt
27
- sudo apt install -y libopenblas-dev
28
- if: ${{ matrix.feature == 'system' }}
29
+ apt install -y libopenblas-dev
30
+ if: ${{ contains(matrix.feature, 'system') }}
31
- uses: actions-rs/cargo@v1
32
with:
33
command: test
0 commit comments