Skip to content

Update intel-mkl-src version to 0.8 #36

Update intel-mkl-src version to 0.8

Update intel-mkl-src version to 0.8 #36

Workflow file for this run

name: build
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
macos:
name: macOS
runs-on: macos-latest
strategy:
fail-fast: false
matrix:
feature:
- accelerate
- blis
- intel-mkl
- netlib
- openblas
steps:
- uses: actions/checkout@v3
- uses: actions-rs/cargo@v1
with:
command: test
args: >
--features=${{ matrix.feature }}
env:
CC: gcc-12
FC: gfortran-12
LIBRARY_PATH: /usr/local/opt/gcc@12/lib/gcc/12
ubuntu:
name: Ubuntu
runs-on: ubuntu-latest
strategy:
matrix:
feature:
- blis
- intel-mkl
- netlib
- openblas
steps:
- uses: actions/checkout@v3
- uses: actions-rs/cargo@v1
with:
command: test
args: >
--features=${{ matrix.feature }}