Skip to content

Commit 8f6759f

Browse files
authored
Merge pull request #13301 from janjust/main
workflows: set ubuntu-22.04
2 parents a26f28a + f998be9 commit 8f6759f

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.github/workflows/ompi_mpi4py.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ on:
1717

1818
jobs:
1919
test:
20-
runs-on: ubuntu-latest
20+
runs-on: ubuntu-22.04
2121
timeout-minutes: 30
2222
env:
2323
MPI4PY_TEST_SPAWN: true
@@ -113,27 +113,27 @@ jobs:
113113
CFLAGS: "-O0"
114114

115115
- name: Test mpi4py (singleton)
116-
run: python test/main.py -v
116+
run: python test/main.py -v -x test_doc
117117
if: ${{ true }}
118118
timeout-minutes: 10
119119
- name: Test mpi4py (np=1)
120-
run: mpiexec -n 1 python test/main.py -v
120+
run: mpiexec -n 1 python test/main.py -v -x test_doc
121121
if: ${{ true }}
122122
timeout-minutes: 10
123123
- name: Test mpi4py (np=2)
124-
run: mpiexec -n 2 python test/main.py -v -f
124+
run: mpiexec -n 2 python test/main.py -v -f -x test_doc
125125
if: ${{ true }}
126126
timeout-minutes: 10
127127
- name: Test mpi4py (np=3)
128-
run: mpiexec -n 3 python test/main.py -v -f
128+
run: mpiexec -n 3 python test/main.py -v -f -x test_doc
129129
if: ${{ true }}
130130
timeout-minutes: 10
131131
- name: Test mpi4py (np=4)
132-
run: mpiexec -n 4 python test/main.py -v -f
132+
run: mpiexec -n 4 python test/main.py -v -f -x test_doc
133133
if: ${{ true }}
134134
timeout-minutes: 10
135135
- name: Test mpi4py (np=5)
136-
run: mpiexec -n 5 python test/main.py -v -f
136+
run: mpiexec -n 5 python test/main.py -v -f -x test_doc
137137
if: ${{ true }}
138138
timeout-minutes: 10
139139

@@ -151,7 +151,7 @@ jobs:
151151
echo LD_LIBRARY_PATH=/opt/ompi/lib >> $GITHUB_ENV
152152
153153
- name: Test mpi4py (singleton)
154-
run: python test/main.py -v
154+
run: python test/main.py -v -x test_doc
155155
if: ${{ true }}
156156
timeout-minutes: 10
157157

0 commit comments

Comments
 (0)