Skip to content

GitHub Action setting for OpenBLAS #254

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 4 commits into from
Sep 12, 2020
Merged
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
18 changes: 10 additions & 8 deletions .github/workflows/openblas.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,24 +8,26 @@ on:

jobs:
linux:
runs-on: ubuntu-18.04
container:
image: rust
strategy:
fail-fast: false
matrix:
feature:
- system
- static
runs-on: ubuntu-18.04
- system
steps:
- uses: actions/checkout@v1
- name: apt install gfortran
run: |
sudo apt update
sudo apt install -y gfortran
- name: apt install openblas
apt update
apt install -y gfortran
- name: Install OpenBLAS by apt
run: |
sudo apt update
sudo apt install -y libopenblas-dev
if: ${{ matrix.feature == 'system' }}
apt update
apt install -y libopenblas-dev
if: ${{ contains(matrix.feature, 'system') }}
- uses: actions-rs/cargo@v1
with:
command: test
Expand Down