File tree Expand file tree Collapse file tree 2 files changed +197
-480
lines changed Expand file tree Collapse file tree 2 files changed +197
-480
lines changed Original file line number Diff line number Diff line change @@ -141,16 +141,21 @@ jobs:
141
141
# sed: can't read C:\hostedtoolcache\windows\Python\3.12.10\x64/jupyter_client/runapp.py: No such file or directory
142
142
if : matrix.os != 'windows-2022'
143
143
shell : bash
144
+ env :
145
+ BRANCH : ${{ github.head_ref || github.ref_name }}
144
146
run : |
145
147
146
- pip install jupyter
148
+ pip install -q jupyter
147
149
148
150
sed -i.bak 's/OUTPUT_TIMEOUT = 10/OUTPUT_TIMEOUT = 100/g' \
149
151
$(python -c 'import site; print(site.getsitepackages()[0])')/jupyter_client/runapp.py
150
152
151
153
jupyter execute examples/mlir_python_extras.ipynb
152
154
jupyter execute examples/vectorization_e2e.ipynb
153
-
155
+ if [ ${{ matrix.os }} == 'ubuntu-22.04' ]; then
156
+ jupyter execute examples/cuda_e2e.ipynb
157
+ fi
158
+
154
159
- name : Test gpu examples
155
160
shell : bash
156
161
run : |
You can’t perform that action at this time.
0 commit comments