Skip to content

Commit 0b864dc

Browse files
authored
run -> execute (#63)
1 parent efc51fa commit 0b864dc

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

.github/workflows/test.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -117,8 +117,6 @@ jobs:
117117
steps:
118118
- name: Checkout
119119
uses: actions/checkout@v2
120-
with:
121-
sparse-checkout: examples/mlir_python_extras.ipynb
122120

123121
- name: Setup Python
124122
uses: actions/setup-python@v4
@@ -129,11 +127,16 @@ jobs:
129127
- name: Run notebook
130128
shell: bash
131129
run: |
130+
132131
pip install jupyter
132+
pip install -q mlir-python-bindings -f https://makslevental.github.io/wheels
133+
pip install -q .
134+
133135
sed -i.bak 's/OUTPUT_TIMEOUT = 10/OUTPUT_TIMEOUT = 100/g' \
134136
$(python -c 'import site; print(site.getsitepackages()[0])')/jupyter_client/runapp.py
135-
BRANCH=${{ github.ref_name }} jupyter run examples/mlir_python_extras.ipynb
136-
BRANCH=${{ github.ref_name }} jupyter run examples/vectorization_e2e.ipynb
137+
138+
jupyter execute examples/mlir_python_extras.ipynb
139+
jupyter execute examples/vectorization_e2e.ipynb
137140
138141
mlir-bindings-aarch64:
139142

0 commit comments

Comments
 (0)