File tree Expand file tree Collapse file tree 1 file changed +13
-3
lines changed
Expand file tree Collapse file tree 1 file changed +13
-3
lines changed Original file line number Diff line number Diff line change @@ -24,12 +24,22 @@ jobs:
2424 uses : actions/setup-python@v4
2525 with :
2626 python-version : 3.8
27- - name : Install tox and asv
28- run : pip install -U pip "tox<4" asv
27+ - name : Install Linux system dependencies
28+ run : |
29+ sudo apt-get update
30+ sudo apt install gfortran gcc libopenblas-dev
31+ - name : Install python dependencies
32+ run : |
33+ python -m pip install --upgrade pip wheel setuptools virtualenv asv wget cmake casadi numpy
34+ - name : Install SuiteSparse and Sundials
35+ run : python scripts/install_KLU_Sundials.py
2936 - name : Run benchmarks
3037 run : |
3138 asv machine --machine "GitHubRunner"
32- asv run --machine "GitHubRunner" NEW
39+ asv run --machine "GitHubRunner" NEW --show-stderr --strict -v
40+ env :
41+ SUNDIALS_INST : $HOME/.local
42+ LD_LIBRARY_PATH : $HOME/.local/lib
3343 - name : Upload results as artifact
3444 uses : actions/upload-artifact@v2
3545 with :
You can’t perform that action at this time.
0 commit comments