We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 104bbe4 commit fcbada6Copy full SHA for fcbada6
.github/workflows/intel-mkl-tool.yml
@@ -45,13 +45,23 @@ jobs:
45
--release
46
--example seek
47
48
- seek-ubuntu:
+ seek-apt:
49
runs-on: ubuntu-22.04
50
+ strategy:
51
+ fail-fast: false
52
+ matrix:
53
+ image:
54
+ - ubuntu:22.04
55
+ - debian:10
56
container:
- image: ubuntu:22.04
57
+ image: ${{ matrix.image }}
58
steps:
59
- uses: actions/checkout@v1
60
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
+
65
- name: Install MKL using apt
66
run: |
67
export DEBIAN_FRONTEND=noninteractive
0 commit comments