Skip to content

Commit e39e7bb

Browse files
authored
integrate llvm buffer deallocation (#121)
1 parent b9f0335 commit e39e7bb

File tree

4 files changed

+76
-160
lines changed

4 files changed

+76
-160
lines changed

.github/workflows/test.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@ on:
88
branches:
99
- main
1010
workflow_dispatch:
11-
branches:
12-
- main
1311
schedule:
1412
# At minute 0 past hour 6. (see https://crontab.guru)
1513
- cron: '00 06 * * *'
@@ -59,7 +57,11 @@ jobs:
5957
- name: Install and configure
6058
shell: bash
6159
run: |
62-
pip install .[test,mlir] -v
60+
if [ ${{ matrix.py_version }} == '3.9' ]; then
61+
pip install .[test,mlir] -v
62+
else
63+
pip install .[test,mlir,eudsl] -v
64+
fi
6365
6466
- name: Test
6567
shell: bash

0 commit comments

Comments
 (0)