Formatting #134
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test domain decomposition | |
on: | |
push: | |
branches: | |
- main | |
- develop | |
pull_request: | |
branches: | |
- "*" | |
jobs: | |
integration_test: | |
name: Run integration tests | |
runs-on: ubuntu-latest | |
container: precice/precice | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
with: | |
path: micro-manager | |
- name: Install sudo for MPI | |
working-directory: micro-manager | |
run: | | |
apt-get -qq update | |
apt-get -qq install sudo | |
- name: Use mpi4py | |
uses: mpi4py/setup-mpi@v1 | |
- name: Add user precice | |
run: useradd -m -s /bin/bash precice | |
- name: Install Dependencies | |
working-directory: micro-manager | |
run: | | |
apt-get -qq install python3-dev python3-pip git python-is-python3 pkg-config | |
su -c "python -m pip install --upgrade pip" precice | |
su -c "pip install setuptools wheel twine" precice | |
- name: Install micro-manager | |
working-directory: micro-manager | |
run: su -c "pip3 install --user ." precice | |
- name: Run integration test (variant 1) | |
timeout-minutes: 3 | |
working-directory: micro-manager/tests/integration | |
run: | | |
chown -R precice test_unit_cube/ | |
cd test_unit_cube/ | |
su -c "mpiexec -n 2 python3 run_micro_manager.py --config micro-manager-config-parallel-1.json & python3 unit_cube.py" precice | |
- name: Run integration test (variant 2) | |
timeout-minutes: 3 | |
working-directory: micro-manager/tests/integration | |
run: | | |
cd test_unit_cube/ | |
su -c "mpiexec -n 6 --oversubscribe python3 run_micro_manager.py --config micro-manager-config-parallel-2.json & python3 unit_cube.py" precice | |
unit_tests: | |
name: Run unit tests | |
runs-on: ubuntu-latest | |
container: precice/precice | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v3 | |
with: | |
path: micro-manager | |
- name: Install Dependencies | |
working-directory: micro-manager | |
run: | | |
apt-get -qq update | |
apt-get -qq install python3-dev python3-pip git python-is-python3 pkg-config | |
python -m pip install --upgrade pip | |
pip install setuptools wheel | |
- name: Install Micro Manager | |
working-directory: micro-manager | |
run: pip3 install --user . | |
- name: Run unit tests | |
working-directory: micro-manager/tests/unit | |
run: python3 -m unittest test_domain_decomposition.py |