|
7 | 7 | pull_request: {} |
8 | 8 |
|
9 | 9 | jobs: |
10 | | - linux: |
| 10 | + linux-official: |
11 | 11 | strategy: |
12 | 12 | fail-fast: false |
13 | 13 | matrix: |
14 | | - image: |
15 | | - - ghcr.io/rust-math/rust-mkl:1.62.1-2020.1 |
16 | | - - rust:1.62.1 |
17 | 14 | feature: |
18 | | - - "" |
| 15 | + - "" # test of no-feature |
19 | 16 | - mkl-static-lp64-iomp |
20 | 17 | - mkl-static-lp64-seq |
21 | 18 | - mkl-static-ilp64-iomp |
22 | 19 | - mkl-static-ilp64-seq |
23 | | - include: |
24 | | - - image: ghcr.io/rust-math/rust-mkl:1.62.1-2020.1 |
25 | | - feature: mkl-dynamic-lp64-iomp |
26 | | - - image: ghcr.io/rust-math/rust-mkl:1.62.1-2020.1 |
27 | | - feature: mkl-dynamic-lp64-seq |
28 | | - - image: ghcr.io/rust-math/rust-mkl:1.62.1-2020.1 |
29 | | - feature: mkl-dynamic-ilp64-iomp |
30 | | - - image: ghcr.io/rust-math/rust-mkl:1.62.1-2020.1 |
31 | | - feature: mkl-dynamic-ilp64-seq |
| 20 | + - mkl-dynamic-lp64-iomp |
| 21 | + - mkl-dynamic-lp64-seq |
| 22 | + - mkl-dynamic-ilp64-iomp |
| 23 | + - mkl-dynamic-ilp64-seq |
32 | 24 | runs-on: ubuntu-22.04 |
33 | 25 | container: |
34 | | - image: ${{ matrix.image }} |
| 26 | + image: ghcr.io/rust-math/rust-mkl:1.62.1-2020.1 |
35 | 27 | steps: |
36 | 28 | - uses: actions/checkout@v1 |
| 29 | + - uses: actions-rs/cargo@v1 |
| 30 | + with: |
| 31 | + command: test |
| 32 | + args: > |
| 33 | + --manifest-path=intel-mkl-sys/Cargo.toml |
| 34 | + --features=${{ matrix.feature }} |
37 | 35 |
|
| 36 | + linux-ocipkg: |
| 37 | + strategy: |
| 38 | + fail-fast: false |
| 39 | + matrix: |
| 40 | + feature: |
| 41 | + - mkl-static-lp64-iomp |
| 42 | + - mkl-static-lp64-seq |
| 43 | + - mkl-static-ilp64-iomp |
| 44 | + - mkl-static-ilp64-seq |
| 45 | + runs-on: ubuntu-22.04 |
| 46 | + container: |
| 47 | + image: rust:1.62.1 |
| 48 | + steps: |
| 49 | + - uses: actions/checkout@v1 |
38 | 50 | - uses: actions-rs/cargo@v1 |
39 | | - if: matrix.image == 'rust:1.62.1' |
40 | 51 | with: |
41 | 52 | command: install |
42 | | - args: ocipkg-cli --version=0.2.3 |
43 | | - - name: Login to ghcr.io |
44 | | - if: matrix.image == 'rust:1.62.1' |
45 | | - run: | |
46 | | - ocipkg login -u ${{ github.repository_owner }} -p ${{ github.token }} https://ghcr.io |
47 | | -
|
| 53 | + args: ocipkg-cli |
48 | 54 | - uses: actions-rs/cargo@v1 |
49 | 55 | with: |
50 | 56 | command: test |
51 | 57 | args: > |
52 | 58 | --manifest-path=intel-mkl-sys/Cargo.toml |
53 | 59 | --features=${{ matrix.feature }} |
54 | 60 |
|
55 | | - windows: |
| 61 | + windows-nuget: |
56 | 62 | strategy: |
57 | 63 | fail-fast: false |
58 | 64 | matrix: |
|
0 commit comments