Skip to content

Commit d048de8

Browse files
committed
Try fix
1 parent 6b8aa75 commit d048de8

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

.github/workflows/integration_tests.yml

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -38,25 +38,23 @@ jobs:
3838
integration-tests:
3939
runs-on: [self-hosted, gpu, db]
4040
steps:
41-
- name: Export OpenMPI PATH
42-
run: |
43-
export PATH=/opt/openmpi-4.1.5/bin:$PATH
44-
export LD_LIBRARY_PATH=/opt/openmpi-4.1.5/lib:$LD_LIBRARY_PATH
45-
ompi_info
46-
- uses: actions/checkout@v3
4741
- name: Install poetry
42+
- uses: actions/checkout@v3
4843
run: pip install poetry
4944
- uses: actions/setup-python@v4.7.1
5045
with:
5146
python-version: '3.10'
5247
- name: Install dependencies and check code
5348
run: |
49+
export PATH=/opt/openmpi-4.1.5/bin:$PATH
50+
export LD_LIBRARY_PATH=/opt/openmpi-4.1.5/lib:$LD_LIBRARY_PATH
5451
ompi_info
5552
poetry env use '3.10'
5653
source $(poetry env info --path)/bin/activate
57-
env MPICC=/opt/openmpi-4.1.5/bin/mpicc python3 -m pip install git+https://github.com/mpi4py/mpi4py
5854
poetry install --with test,dev --all-extras
5955
coverage run -m pytest -m integration_test && coverage xml && coverage report -m
56+
- env:
57+
MPICC: /opt/openmpi-4.1.5/bin/mpicc
6058
- name: Upload coverage to Codecov
6159
uses: Wandalen/wretry.action@v1.0.36
6260
with:

0 commit comments

Comments
 (0)