Skip to content

Commit 156fe8a

Browse files
authored
Merge pull request #329 from wegank/flint-test
Test FLINT before building msolve
2 parents 5d1fc9e + 67447be commit 156fe8a

1 file changed

Lines changed: 9 additions & 1 deletion

File tree

.github/workflows/msolve.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
jobs:
1010
build:
1111
runs-on: ${{ matrix.os }}
12-
timeout-minutes: 10
12+
timeout-minutes: 20
1313
strategy:
1414
fail-fast: false
1515
matrix:
@@ -143,6 +143,10 @@ jobs:
143143
git clone --depth=1 https://github.com/flintlib/flint
144144
cd flint && ./bootstrap.sh && ./configure CC=${CC} --with-ntl --enable-assert
145145
$MAKE && sudo make install && sudo ldconfig
146+
- name: "Test FLINT"
147+
run: |
148+
cd flint && $MAKE tests && $MAKE check
149+
continue-on-error: true
146150
- name: "Build and Test msolve"
147151
run: |
148152
./autogen.sh && ./configure && $MAKE && make check
@@ -170,6 +174,10 @@ jobs:
170174
git clone --depth=1 https://github.com/flintlib/flint
171175
cd flint && ./bootstrap.sh && ./configure CC=${CC} --with-ntl --enable-assert
172176
$MAKE && sudo make install && sudo ldconfig
177+
- name: "Test FLINT"
178+
run: |
179+
cd flint && $MAKE tests && $MAKE check
180+
continue-on-error: true
173181
- name: "Build and Test msolve"
174182
run: |
175183
./autogen.sh && ./configure && $MAKE && SEED=1617753600 make check

0 commit comments

Comments
 (0)