Skip to content

Commit fcbada6

Browse files
committed
Add debian case
1 parent 104bbe4 commit fcbada6

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

.github/workflows/intel-mkl-tool.yml

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,13 +45,23 @@ jobs:
4545
--release
4646
--example seek
4747
48-
seek-ubuntu:
48+
seek-apt:
4949
runs-on: ubuntu-22.04
50+
strategy:
51+
fail-fast: false
52+
matrix:
53+
image:
54+
- ubuntu:22.04
55+
- debian:10
5056
container:
51-
image: ubuntu:22.04
57+
image: ${{ matrix.image }}
5258
steps:
5359
- uses: actions/checkout@v1
5460

61+
- name: Add non-free registry
62+
if: ${{ startsWith(matrix.image, 'debian') }}
63+
run: sed -i "s/main$/main contrib non-free/" /etc/apt/sources.list
64+
5565
- name: Install MKL using apt
5666
run: |
5767
export DEBIAN_FRONTEND=noninteractive

0 commit comments

Comments
 (0)