77 pull_request :
88 branches :
99 - " *"
10- jobs :
10+ jobs :
1111 adaptivity_integration_tests :
1212 name : Run adaptivity integration tests
1313 runs-on : ubuntu-latest
1414 container : precice/precice:nightly
1515 steps :
1616 - name : Checkout repository
17- uses : actions/checkout@v3
17+ uses : actions/checkout@v4
1818 with :
1919 path : micro-manager
2020
@@ -23,34 +23,33 @@ jobs:
2323 run : |
2424 apt-get -qq update
2525 apt-get -qq install python3-dev python3-pip git python-is-python3 pkg-config
26- python -m pip install --upgrade pip
27- pip install setuptools wheel
26+ pip3 install --upgrade pip
2827
2928 - name : Install Micro Manager
3029 working-directory : micro-manager
31- run : pip3 install --user .
30+ run : pip3 install .
3231
3332 - name : Run integration test with local adaptivity
3433 timeout-minutes : 3
3534 working-directory : micro-manager/tests/integration/test_unit_cube
3635 run : |
37- export LD_LIBRARY_PATH=/usr/ local/lib:$LD_LIBRARY_PATH
38- python3 unit_cube.py & python3 run_micro_manager.py --config micro-manager-config-local-adaptivity.json
36+ micro-manager-precice micro-manager-config- local-adaptivity.json &
37+ python3 unit_cube.py
3938
4039 - name : Run integration test with global adaptivity
4140 timeout-minutes : 3
4241 working-directory : micro-manager/tests/integration/test_unit_cube
4342 run : |
44- export LD_LIBRARY_PATH=/usr/local/lib:$LD_LIBRARY_PATH
45- python3 unit_cube.py & python3 run_micro_manager.py --config micro-manager-config-global-adaptivity.json
43+ micro-manager-precice micro-manager-config-global-adaptivity.json &
44+ python3 unit_cube.py
4645
4746 adaptivity_unit_tests_serial :
4847 name : Run adaptivity unit tests in serial
4948 runs-on : ubuntu-latest
5049 container : precice/precice:nightly
5150 steps :
5251 - name : Checkout Repository
53- uses : actions/checkout@v3
52+ uses : actions/checkout@v4
5453 with :
5554 path : micro-manager
5655
5958 run : |
6059 apt-get -qq update
6160 apt-get -qq install python3-dev python3-pip git python-is-python3 pkg-config
62- python -m pip install --upgrade pip
63- pip install setuptools wheel
61+ pip3 install --upgrade pip
6462
6563 - name : Install Micro Manager
6664 working-directory : micro-manager
7674 container : precice/precice:nightly
7775 steps :
7876 - name : Checkout Repository
79- uses : actions/checkout@v3
77+ uses : actions/checkout@v4
8078 with :
8179 path : micro-manager
8280
9492 run : |
9593 apt-get -qq update
9694 apt-get -qq install python3-dev python3-pip git python-is-python3 pkg-config
97- python -m pip install --upgrade pip
98- pip install setuptools wheel twine
95+ pip3 install --upgrade pip
9996
10097 - name : Install Micro Manager
10198 working-directory : micro-manager
0 commit comments