From 89e315cdb20981fc9a13d3c598e1edbdf563ecf5 Mon Sep 17 00:00:00 2001 From: Tomislav Janjusic Date: Tue, 10 Jun 2025 11:47:19 -0500 Subject: [PATCH 1/2] set specific ubuntu Signed-off-by: Tomislav Janjusic --- .github/workflows/ompi_mpi4py.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ompi_mpi4py.yaml b/.github/workflows/ompi_mpi4py.yaml index 8e3c450b4be..8f7b6fba18e 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 From f998be9c180f956aceefba2d8646e4f25ba70990 Mon Sep 17 00:00:00 2001 From: Tomislav Janjusic Date: Tue, 10 Jun 2025 12:52:33 -0500 Subject: [PATCH 2/2] mpi4py: add -x test_doc Signed-off-by: Tomislav Janjusic --- .github/workflows/ompi_mpi4py.yaml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ompi_mpi4py.yaml b/.github/workflows/ompi_mpi4py.yaml index 8f7b6fba18e..f84306a7657 100644 --- a/.github/workflows/ompi_mpi4py.yaml +++ b/.github/workflows/ompi_mpi4py.yaml @@ -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