Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
pages:
runs-on: ubuntu-18.04
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
- name: Generate code coverage
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/intel-mkl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
--features=intel-mkl-static

linux:
runs-on: ubuntu-18.04
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v1
- uses: actions-rs/cargo@v1
Expand All @@ -33,8 +33,9 @@ jobs:
--features=intel-mkl-static

linux-container:
runs-on: ubuntu-18.04
container: ghcr.io/rust-math/intel-mkl-src/mkl-rust:1.49.0
runs-on: ubuntu-22.04
container:
image: ghcr.io/rust-math/rust-mkl:1.63.0-2020.1
steps:
- uses: actions/checkout@v1
- uses: actions-rs/cargo@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/netlib.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
matrix:
feature:
- static
runs-on: ubuntu-18.04
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v1
- name: apt install gfortran
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/openblas.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

jobs:
linux:
runs-on: ubuntu-18.04
runs-on: ubuntu-22.04
container:
image: rust
strategy:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

jobs:
check-format:
runs-on: ubuntu-18.04
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v1
- uses: actions-rs/cargo@v1
Expand All @@ -17,17 +17,17 @@ jobs:
args: -- --check

clippy:
runs-on: ubuntu-18.04
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v1
- uses: actions-rs/cargo@v1
with:
command: clippy

coverage:
runs-on: ubuntu-18.04
runs-on: ubuntu-22.04
container:
image: ghcr.io/rust-math/intel-mkl-src/mkl-rust:1.49.0
image: ghcr.io/rust-math/rust-mkl:1.63.0-2020.1
options: --security-opt seccomp=unconfined
steps:
- uses: actions/checkout@v2
Expand Down