forked from blas-lapack-rs/openblas-src
-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (38 loc) · 922 Bytes
/
openblas-build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
name: openblas-build
on:
push:
branches:
- master
paths:
- 'openblas-build/**'
- '.github/workflows/openblas-build.yml'
pull_request:
paths:
- 'openblas-build/**'
workflow_dispatch: {}
jobs:
linux:
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
test_target:
- build_no_lapacke
- build_no_shared
- build_openmp
container:
image: rust
env:
RUST_BACKTRACE: 1
steps:
- uses: actions/checkout@v4
with:
submodules: "recursive"
- name: Install gfortran by apt
run: |
apt update
apt install -y gfortran
- name: Common minor tests
run: cargo test --manifest-path=openblas-build/Cargo.toml
- name: Build test
run: cargo test ${{ matrix.test_target }} --manifest-path=openblas-build/Cargo.toml -- --ignored