Skip to content

build(deps): bump flate2 from 1.1.1 to 1.1.2 #37

build(deps): bump flate2 from 1.1.1 to 1.1.2

build(deps): bump flate2 from 1.1.1 to 1.1.2 #37

Workflow file for this run

name: intel-mkl-sys
on:
push:
branches:
- master
pull_request: {}
jobs:
linux-official:
strategy:
fail-fast: false
matrix:
feature:
- "" # test of no-feature
- mkl-static-lp64-iomp
- mkl-static-lp64-seq
- mkl-static-ilp64-iomp
- mkl-static-ilp64-seq
- mkl-dynamic-lp64-iomp
- mkl-dynamic-lp64-seq
- mkl-dynamic-ilp64-iomp
- mkl-dynamic-ilp64-seq
runs-on: ubuntu-24.04
container:
image: ghcr.io/rust-math/rust-mkl:main
steps:
- uses: actions/checkout@v1
- uses: actions-rs/cargo@v1
with:
command: test
args: >
--manifest-path=intel-mkl-sys/Cargo.toml
--features=${{ matrix.feature }}
linux-ocipkg:
strategy:
fail-fast: false
matrix:
feature:
- mkl-static-lp64-iomp
- mkl-static-lp64-seq
- mkl-static-ilp64-iomp
- mkl-static-ilp64-seq
runs-on: ubuntu-24.04
container:
image: rust:1.72.0
steps:
- uses: actions/checkout@v1
- uses: actions-rs/cargo@v1
with:
command: test
args: >
--manifest-path=intel-mkl-sys/Cargo.toml
--features=${{ matrix.feature }}
windows-nuget:
strategy:
fail-fast: false
matrix:
feature:
- mkl-static-lp64-iomp
- mkl-static-lp64-seq
- mkl-static-ilp64-iomp
- mkl-static-ilp64-seq
- mkl-dynamic-lp64-iomp
- mkl-dynamic-lp64-seq
- mkl-dynamic-ilp64-iomp
- mkl-dynamic-ilp64-seq
runs-on: windows-2025
steps:
- uses: actions/checkout@v1
- name: Get MKL using NuGet
run: |
nuget install intelmkl.devel.cluster.win-x64 -Version 2022.0.3.171
nuget install intelmkl.static.cluster.win-x64 -Version 2022.0.3.171
- name: Add DLL runtime path
run: |
echo "${{ github.workspace }}/intelmkl.redist.win-x64.2022.0.3.171/runtimes/win-x64/native" >> $Env:GITHUB_PATH
echo "${{ github.workspace }}/intelopenmp.redist.win.2022.0.0.3663/runtimes/win-x64/native" >> $Env:GITHUB_PATH
- uses: actions-rs/cargo@v1
with:
command: test
args: >
--manifest-path=intel-mkl-sys/Cargo.toml
--features=${{ matrix.feature }}
env:
MKLROOT: ${{ github.workspace }}
windows-ocipkg:
strategy:
fail-fast: false
matrix:
feature:
# Fails with STATUS_DLL_NOT_FOUND
# - mkl-static-lp64-iomp
- mkl-static-lp64-seq
# Fails with STATUS_DLL_NOT_FOUND
# - mkl-static-ilp64-iomp
- mkl-static-ilp64-seq
runs-on: windows-2025
steps:
- uses: actions/checkout@v1
- uses: actions-rs/cargo@v1
with:
command: test
args: >
--manifest-path=intel-mkl-sys/Cargo.toml
--features=${{ matrix.feature }}