File tree Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Original file line number Diff line number Diff line change 11
11
runs-on : ubuntu-latest
12
12
strategy :
13
13
matrix :
14
- python : [" 3.8" ]
14
+ python : [3.8]
15
15
steps :
16
16
- uses : actions/checkout@v2
17
17
with :
@@ -55,11 +55,14 @@ jobs:
55
55
56
56
test :
57
57
needs : build
58
- runs-on : ubuntu-latest
58
+ runs-on : ${{ matrix.runner }}
59
59
60
60
strategy :
61
61
matrix :
62
- python : ["3.8"]
62
+ python : [3.8]
63
+ runner :
64
+ - ubuntu-latest
65
+ - [self-hosted, gen9]
63
66
env :
64
67
CHANNELS : -c intel -c defaults --override-channels
65
68
@@ -109,6 +112,7 @@ jobs:
109
112
run : |
110
113
# echo "libintelocl.so" | tee /etc/OpenCL/vendors/intel-cpu.icd
111
114
export OCL_ICD_FILENAMES=libintelocl.so
115
+ clinfo -l
112
116
python -m pytest --pyargs $MODULE_NAME
113
117
114
118
upload :
@@ -117,7 +121,7 @@ jobs:
117
121
runs-on : ubuntu-latest
118
122
strategy :
119
123
matrix :
120
- python : [" 3.8" ]
124
+ python : [3.8]
121
125
steps :
122
126
- name : Download artifact
123
127
uses : actions/download-artifact@v2
You can’t perform that action at this time.
0 commit comments