diff --git a/.github/workflows/ompi_mpi4py.yaml b/.github/workflows/ompi_mpi4py.yaml index 8e3c450b4be..f84306a7657 100644 --- a/.github/workflows/ompi_mpi4py.yaml +++ b/.github/workflows/ompi_mpi4py.yaml @@ -17,7 +17,7 @@ on: jobs: test: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 timeout-minutes: 30 env: MPI4PY_TEST_SPAWN: true @@ -113,27 +113,27 @@ jobs: CFLAGS: "-O0" - name: Test mpi4py (singleton) - run: python test/main.py -v + run: python test/main.py -v -x test_doc if: ${{ true }} timeout-minutes: 10 - name: Test mpi4py (np=1) - run: mpiexec -n 1 python test/main.py -v + run: mpiexec -n 1 python test/main.py -v -x test_doc if: ${{ true }} timeout-minutes: 10 - name: Test mpi4py (np=2) - run: mpiexec -n 2 python test/main.py -v -f + run: mpiexec -n 2 python test/main.py -v -f -x test_doc if: ${{ true }} timeout-minutes: 10 - name: Test mpi4py (np=3) - run: mpiexec -n 3 python test/main.py -v -f + run: mpiexec -n 3 python test/main.py -v -f -x test_doc if: ${{ true }} timeout-minutes: 10 - name: Test mpi4py (np=4) - run: mpiexec -n 4 python test/main.py -v -f + run: mpiexec -n 4 python test/main.py -v -f -x test_doc if: ${{ true }} timeout-minutes: 10 - name: Test mpi4py (np=5) - run: mpiexec -n 5 python test/main.py -v -f + run: mpiexec -n 5 python test/main.py -v -f -x test_doc if: ${{ true }} timeout-minutes: 10 @@ -151,7 +151,7 @@ jobs: echo LD_LIBRARY_PATH=/opt/ompi/lib >> $GITHUB_ENV - name: Test mpi4py (singleton) - run: python test/main.py -v + run: python test/main.py -v -x test_doc if: ${{ true }} timeout-minutes: 10