Update ocipkg dep to 0.2.9 #5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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-22.04 | |
container: | |
image: ghcr.io/rust-math/rust-mkl:1.62.1-2020.1 | |
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-22.04 | |
container: | |
image: rust:1.62.1 | |
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-2022 | |
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: | |
- mkl-static-lp64-iomp | |
- mkl-static-lp64-seq | |
- mkl-static-ilp64-iomp | |
- mkl-static-ilp64-seq | |
runs-on: windows-2022 | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: actions-rs/cargo@v1 | |
with: | |
command: test | |
args: > | |
--manifest-path=intel-mkl-sys/Cargo.toml | |
--features=${{ matrix.feature }} |