Skip to content

Commit 9414ba6

Browse files
authored
Merge pull request #323 from rust-ndarray/update-container
Upgrade container for intel-mkl feature
2 parents 57393b2 + e7fe824 commit 9414ba6

File tree

5 files changed

+11
-10
lines changed

5 files changed

+11
-10
lines changed

.github/workflows/gh-pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77

88
jobs:
99
pages:
10-
runs-on: ubuntu-18.04
10+
runs-on: ubuntu-22.04
1111
steps:
1212
- uses: actions/checkout@v2
1313
- name: Generate code coverage

.github/workflows/intel-mkl.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
--features=intel-mkl-static
2121
2222
linux:
23-
runs-on: ubuntu-18.04
23+
runs-on: ubuntu-22.04
2424
steps:
2525
- uses: actions/checkout@v1
2626
- uses: actions-rs/cargo@v1
@@ -33,8 +33,9 @@ jobs:
3333
--features=intel-mkl-static
3434
3535
linux-container:
36-
runs-on: ubuntu-18.04
37-
container: ghcr.io/rust-math/intel-mkl-src/mkl-rust:1.49.0
36+
runs-on: ubuntu-22.04
37+
container:
38+
image: ghcr.io/rust-math/rust-mkl:1.63.0-2020.1
3839
steps:
3940
- uses: actions/checkout@v1
4041
- uses: actions-rs/cargo@v1

.github/workflows/netlib.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
matrix:
1414
feature:
1515
- static
16-
runs-on: ubuntu-18.04
16+
runs-on: ubuntu-22.04
1717
steps:
1818
- uses: actions/checkout@v1
1919
- name: apt install gfortran

.github/workflows/openblas.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88

99
jobs:
1010
linux:
11-
runs-on: ubuntu-18.04
11+
runs-on: ubuntu-22.04
1212
container:
1313
image: rust
1414
strategy:

.github/workflows/rust.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88

99
jobs:
1010
check-format:
11-
runs-on: ubuntu-18.04
11+
runs-on: ubuntu-22.04
1212
steps:
1313
- uses: actions/checkout@v1
1414
- uses: actions-rs/cargo@v1
@@ -17,17 +17,17 @@ jobs:
1717
args: -- --check
1818

1919
clippy:
20-
runs-on: ubuntu-18.04
20+
runs-on: ubuntu-22.04
2121
steps:
2222
- uses: actions/checkout@v1
2323
- uses: actions-rs/cargo@v1
2424
with:
2525
command: clippy
2626

2727
coverage:
28-
runs-on: ubuntu-18.04
28+
runs-on: ubuntu-22.04
2929
container:
30-
image: ghcr.io/rust-math/intel-mkl-src/mkl-rust:1.49.0
30+
image: ghcr.io/rust-math/rust-mkl:1.63.0-2020.1
3131
options: --security-opt seccomp=unconfined
3232
steps:
3333
- uses: actions/checkout@v2

0 commit comments

Comments
 (0)