Skip to content

Commit 8d1062b

Browse files
authored
Faster compilation in PR pipeline (#823)
* Faster compilation in PR pipeline * Add comment
1 parent f90522c commit 8d1062b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/coverage.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,9 @@ jobs:
3737
python -m pip install networkx cython pytest-cov
3838
3939
- name: Install PySCIPOpt
40-
run: python -m pip install .
40+
run: |
41+
export CFLAGS="-O0 -ggdb" # disable compiler optimizations for faster builds
42+
python -m pip install .
4143
4244
- name: Run pyscipopt tests
4345
run: |

0 commit comments

Comments
 (0)