File tree Expand file tree Collapse file tree 2 files changed +9
-13
lines changed Expand file tree Collapse file tree 2 files changed +9
-13
lines changed Original file line number Diff line number Diff line change 22
22
- build_no_lapacke
23
23
- build_no_shared
24
24
- build_openmp
25
- container :
26
- image : rust
27
25
env :
28
26
RUST_BACKTRACE : 1
29
27
steps :
32
30
submodules : " recursive"
33
31
- name : Install gfortran by apt
34
32
run : |
35
- apt update
36
- apt install -y gfortran
33
+ sudo apt update
34
+ sudo apt install -y gfortran
37
35
- name : Common minor tests
38
36
run : cargo test --manifest-path=openblas-build/Cargo.toml
39
37
- name : Build test
Original file line number Diff line number Diff line change 19
19
20
20
jobs :
21
21
windows-msvc :
22
- runs-on : windows-2019
22
+ runs-on : windows-2022
23
23
strategy :
24
24
fail-fast : false
25
25
matrix :
82
82
83
83
x86_64-unknown-linux-gnu :
84
84
runs-on : ubuntu-22.04
85
- container :
86
- image : rust
87
85
strategy :
88
86
fail-fast : false
89
87
matrix :
@@ -97,12 +95,12 @@ jobs:
97
95
submodules : " recursive"
98
96
- name : Install gfortran by apt
99
97
run : |
100
- apt update
101
- apt install -y gfortran
98
+ sudo apt update
99
+ sudo apt install -y gfortran
102
100
- name : Install OpenBLAS by apt
103
101
run : |
104
- apt update
105
- apt install -y libopenblas-dev
102
+ sudo apt update
103
+ sudo apt install -y libopenblas-dev
106
104
if : ${{ contains(matrix.feature, 'system') }}
107
105
- name : Test features=${{ matrix.feature }}
108
106
run : cargo test --features=${{ matrix.feature }} --manifest-path=openblas-src/Cargo.toml
@@ -139,8 +137,8 @@ jobs:
139
137
- uses : actions/checkout@v4
140
138
- name : Install OpenBLAS by apt
141
139
run : |
142
- apt update
143
- apt install -y libopenblas-dev
140
+ sudo apt update
141
+ sudo apt install -y libopenblas-dev
144
142
- name : Install toolchain
145
143
146
144
- name : cargo test
You can’t perform that action at this time.
0 commit comments