Skip to content

build(deps): Bump Rust from 1.62.1 to 1.72.0 #8

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 8 commits into from
Apr 11, 2025
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/github-label-sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ on:

jobs:
sync:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: r7kamura/github-label-sync-action@v0
18 changes: 10 additions & 8 deletions .github/workflows/intel-mkl-sys.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ jobs:
- mkl-dynamic-lp64-seq
- mkl-dynamic-ilp64-iomp
- mkl-dynamic-ilp64-seq
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
container:
image: ghcr.io/rust-math/rust-mkl:1.62.1-2020.1
image: ghcr.io/rust-math/rust-mkl:main
steps:
- uses: actions/checkout@v1
- uses: actions-rs/cargo@v1
Expand All @@ -42,9 +42,9 @@ jobs:
- mkl-static-lp64-seq
- mkl-static-ilp64-iomp
- mkl-static-ilp64-seq
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
container:
image: rust:1.62.1
image: rust:1.72.0
steps:
- uses: actions/checkout@v1
- uses: actions-rs/cargo@v1
Expand All @@ -67,7 +67,7 @@ jobs:
- mkl-dynamic-lp64-seq
- mkl-dynamic-ilp64-iomp
- mkl-dynamic-ilp64-seq
runs-on: windows-2022
runs-on: windows-2025
steps:
- uses: actions/checkout@v1
- name: Get MKL using NuGet
Expand All @@ -92,11 +92,13 @@ jobs:
fail-fast: false
matrix:
feature:
- mkl-static-lp64-iomp
# Fails with STATUS_DLL_NOT_FOUND
# - mkl-static-lp64-iomp
- mkl-static-lp64-seq
- mkl-static-ilp64-iomp
# Fails with STATUS_DLL_NOT_FOUND
# - mkl-static-ilp64-iomp
- mkl-static-ilp64-seq
runs-on: windows-2022
runs-on: windows-2025
steps:
- uses: actions/checkout@v1
- uses: actions-rs/cargo@v1
Expand Down
21 changes: 10 additions & 11 deletions .github/workflows/intel-mkl-tool.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@ jobs:
fail-fast: false
matrix:
os:
- windows-2022
- macos-11
- ubuntu-22.04
- windows-2025
- macos-15
- ubuntu-24.04
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v1
- uses: actions-rs/toolchain@v1
with:
toolchain: 1.77.0
toolchain: 1.72.0
profile: minimal
default: true
override: true
Expand All @@ -31,9 +31,9 @@ jobs:
args: --manifest-path=intel-mkl-tool/Cargo.toml

seek:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
container:
image: ghcr.io/rust-math/rust-mkl:1.62.1-2020.1
image: ghcr.io/rust-math/rust-mkl:main
steps:
- uses: actions/checkout@v1
- name: Run seek example
Expand All @@ -46,13 +46,12 @@ jobs:
--example seek

seek-apt:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
strategy:
fail-fast: false
matrix:
image:
- ubuntu:22.04
- ubuntu:20.04
- ubuntu:24.04
- debian:10
container:
image: ${{ matrix.image }}
Expand All @@ -71,7 +70,7 @@ jobs:

- uses: actions-rs/toolchain@v1
with:
toolchain: 1.77.0
toolchain: 1.72.0
profile: minimal
default: true
override: true
Expand All @@ -85,7 +84,7 @@ jobs:
--example seek

seek-windows:
runs-on: windows-2022
runs-on: windows-2025
steps:
- uses: actions/checkout@v1
- name: Get MKL using NuGet
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,9 +8,9 @@ on:

jobs:
check-format:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
container:
image: ghcr.io/rust-math/rust-mkl:1.62.1-2020.1
image: ghcr.io/rust-math/rust-mkl:main
steps:
- uses: actions/checkout@v1
- uses: actions-rs/cargo@v1
Expand All @@ -19,9 +19,9 @@ jobs:
args: -- --check

clippy:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
container:
image: ghcr.io/rust-math/rust-mkl:1.62.1-2020.1
image: ghcr.io/rust-math/rust-mkl:main
steps:
- uses: actions/checkout@v1
- uses: actions-rs/cargo@v1
Expand Down
4 changes: 0 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,6 @@
target/
.cargo-*/

# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
# More information here http://doc.crates.io/guide.html#cargotoml-vs-cargolock
Cargo.lock

# These are backup files generated by rustfmt
**/*.rs.bk

Expand Down
Loading
Loading