@@ -29,11 +29,11 @@ jobs:
2929
3030 steps :
3131 - name : Set up Python ${{ matrix.python-version }}
32- uses : actions/setup-python@v4
32+ uses : actions/setup-python@v5
3333 with :
3434 python-version : ${{ matrix.python-version }}
3535
36- - uses : actions/checkout@v3
36+ - uses : actions/checkout@v4
3737 with :
3838 fetch-depth : 20
3939
@@ -44,20 +44,20 @@ jobs:
4444
4545 # install AMICI
4646 - name : Create AMICI sdist
47- run : |
48- pip3 install build && cd python/sdist && python3 -m build --sdist
47+ run : pip3 install build && cd python/sdist && python3 -m build --sdist
48+
4949 - name : Install AMICI sdist
5050 run : |
5151 pip3 install --user petab[vis] && \
52- AMICI_PARALLEL_COMPILE=2 pip3 install -v --user \
52+ AMICI_PARALLEL_COMPILE="" pip3 install -v --user \
5353 $(ls -t python/sdist/dist/amici-*.tar.gz | head -1)[petab,test,vis]
5454
5555 # retrieve test models
5656 - name : Download and test benchmark collection
5757 run : |
5858 git clone --depth 1 https://github.com/benchmarking-initiative/Benchmark-Models-PEtab.git \
5959 && export BENCHMARK_COLLECTION="$(pwd)/Benchmark-Models-PEtab/Benchmark-Models/" \
60- && AMICI_PARALLEL_COMPILE=2 tests/benchmark-models/test_benchmark_collection.sh
60+ && AMICI_PARALLEL_COMPILE="" tests/benchmark-models/test_benchmark_collection.sh
6161
6262 # run gradient checks
6363 - name : Run Gradient Checks
6666 && cd tests/benchmark-models && pytest ./test_petab_benchmark.py
6767
6868 # upload results
69- - uses : actions/upload-artifact@v3
69+ - uses : actions/upload-artifact@v4
7070 with :
71- name : computation times
71+ name : computation- times-${{ matrix.python-version }}-${{ matrix.extract_subexpressions }}
7272 path : |
7373 tests/benchmark-models/computation_times.csv
7474 tests/benchmark-models/computation_times.png
0 commit comments