Skip to content

Commit d7b0608

Browse files
committed
Run tests on Gen9
1 parent 95d09e4 commit d7b0608

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

.github/workflows/conda-package.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
python: ["3.8"]
14+
python: [3.8]
1515
steps:
1616
- uses: actions/checkout@v2
1717
with:
@@ -55,11 +55,14 @@ jobs:
5555

5656
test:
5757
needs: build
58-
runs-on: ubuntu-latest
58+
runs-on: ${{ matrix.runner }}
5959

6060
strategy:
6161
matrix:
62-
python: ["3.8"]
62+
python: [3.8]
63+
runner:
64+
- ubuntu-latest
65+
- [self-hosted, gen9]
6366
env:
6467
CHANNELS: -c intel -c defaults --override-channels
6568

@@ -109,6 +112,7 @@ jobs:
109112
run: |
110113
# echo "libintelocl.so" | tee /etc/OpenCL/vendors/intel-cpu.icd
111114
export OCL_ICD_FILENAMES=libintelocl.so
115+
clinfo -l
112116
python -m pytest --pyargs $MODULE_NAME
113117
114118
upload:
@@ -117,7 +121,7 @@ jobs:
117121
runs-on: ubuntu-latest
118122
strategy:
119123
matrix:
120-
python: ["3.8"]
124+
python: [3.8]
121125
steps:
122126
- name: Download artifact
123127
uses: actions/download-artifact@v2

0 commit comments

Comments
 (0)