Skip to content

Commit c97a7de

Browse files
committed
Run whole suite on C and Numba linker
1 parent 3531d29 commit c97a7de

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/test.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ jobs:
2525
strategy:
2626
matrix:
2727
os: [ubuntu-latest]
28+
linker: [c, numba]
2829
python-version: ["3.11"]
2930
test-subset:
3031
- tests/model
@@ -37,7 +38,7 @@ jobs:
3738
runs-on: ${{ matrix.os }}
3839
env:
3940
TEST_SUBSET: ${{ matrix.test-subset }}
40-
PYTENSOR_FLAGS: gcc__cxxflags='-march=native'
41+
PYTENSOR_FLAGS: linker=${{ matrix.linker }}
4142
defaults:
4243
run:
4344
shell: bash -leo pipefail {0}
@@ -69,6 +70,7 @@ jobs:
6970
strategy:
7071
matrix:
7172
os: [windows-latest]
73+
linker: [c, numba]
7274
python-version: ["3.12"]
7375
test-subset:
7476
- tests/model
@@ -81,7 +83,7 @@ jobs:
8183
runs-on: ${{ matrix.os }}
8284
env:
8385
TEST_SUBSET: ${{ matrix.test-subset }}
84-
PYTENSOR_FLAGS: gcc__cxxflags='-march=core2'
86+
PYTENSOR_FLAGS: linker=${{ matrix.linker }}
8587
defaults:
8688
run:
8789
shell: cmd /C call {0}

0 commit comments

Comments
 (0)