Upgrade ndarray and other deps #387
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: openblas | |
on: | |
push: | |
branches: | |
- master | |
pull_request: {} | |
jobs: | |
linux: | |
runs-on: ubuntu-22.04 | |
container: | |
image: rust | |
strategy: | |
fail-fast: false | |
matrix: | |
feature: | |
- static | |
- system | |
steps: | |
- uses: actions/checkout@v1 | |
- name: apt install gfortran | |
run: | | |
apt update | |
apt install -y gfortran | |
- name: Install OpenBLAS by apt | |
run: | | |
apt update | |
apt install -y libopenblas-dev | |
if: ${{ contains(matrix.feature, 'system') }} | |
- uses: actions-rs/cargo@v1 | |
with: | |
command: test | |
args: > | |
--manifest-path=ndarray-linalg/Cargo.toml | |
--no-default-features | |
--features=openblas-${{ matrix.feature }} |