Skip to content

Commit 227f0b1

Browse files
committed
Try fix for mca_base_component_repository_open: unable to open mca_btl_openib: librdmacm.so.1
1 parent a1d6e4b commit 227f0b1

File tree

5 files changed

+19
-2
lines changed

5 files changed

+19
-2
lines changed

.github/workflows/aiida.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,14 @@ jobs:
2121
- name: Installation and setup
2222
shell: bash -l {0}
2323
run: |
24+
sudo apt-get update
25+
sudo apt-get install -y librdmacm1 libibverbs1 libmlx4-1 libmlx5-1
2426
pip install -e adis_tools
2527
pip install -e python_workflow_definition
2628
conda install -c conda-forge jupyter papermill
2729
export ESPRESSO_PSEUDO=$(pwd)/espresso/pseudo
2830
verdi presto --profile-name adis
31+
2932
- name: Tests
3033
shell: bash -l {0}
3134
run: |

.github/workflows/executorlib.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,17 @@ jobs:
1818
python-version: "3.12"
1919
environment-file: environment.yml
2020
auto-activate-base: false
21-
- name: Tests
21+
- name: Installation and setup
2222
shell: bash -l {0}
2323
run: |
24+
sudo apt-get update
25+
sudo apt-get install -y librdmacm1 libibverbs1 libmlx4-1 libmlx5-1
2426
pip install -e adis_tools
2527
pip install -e python_workflow_definition
2628
conda install -c conda-forge jupyter papermill
2729
export ESPRESSO_PSEUDO=$(pwd)/espresso/pseudo
30+
- name: Tests
31+
shell: bash -l {0}
32+
run: |
2833
papermill universal_simple_to_executorlib.ipynb universal_simple_to_executorlib_out.ipynb -k "python3"
2934
papermill universal_qe_to_executorlib.ipynb universal_qe_to_executorlib_out.ipynb -k "python3"

.github/workflows/jobflow.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ jobs:
2121
- name: Installation and setup
2222
shell: bash -l {0}
2323
run: |
24+
sudo apt-get update
25+
sudo apt-get install -y librdmacm1 libibverbs1 libmlx4-1 libmlx5-1
2426
pip install -e adis_tools
2527
pip install -e python_workflow_definition
2628
conda install -c conda-forge jupyter papermill

.github/workflows/pyiron.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ jobs:
2121
- name: Installation and setup
2222
shell: bash -l {0}
2323
run: |
24+
sudo apt-get update
25+
sudo apt-get install -y librdmacm1 libibverbs1 libmlx4-1 libmlx5-1
2426
pip install -e adis_tools
2527
pip install -e python_workflow_definition
2628
conda install -c conda-forge jupyter papermill

.github/workflows/python.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,17 @@ jobs:
1818
python-version: "3.12"
1919
environment-file: environment.yml
2020
auto-activate-base: false
21-
- name: Tests
21+
- name: Installation and setup
2222
shell: bash -l {0}
2323
run: |
24+
sudo apt-get update
25+
sudo apt-get install -y librdmacm1 libibverbs1 libmlx4-1 libmlx5-1
2426
pip install -e adis_tools
2527
pip install -e python_workflow_definition
2628
conda install -c conda-forge jupyter papermill
2729
export ESPRESSO_PSEUDO=$(pwd)/espresso/pseudo
30+
- name: Tests
31+
shell: bash -l {0}
32+
run: |
2833
papermill universal_simple_to_python.ipynb universal_simple_to_python_out.ipynb -k "python3"
2934
papermill universal_qe_to_python.ipynb universal_qe_to_python_out.ipynb -k "python3"

0 commit comments

Comments
 (0)