We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f42d85c commit e88115fCopy full SHA for e88115f
.github/workflows/ci.yaml
@@ -26,6 +26,13 @@ jobs:
26
sudo apt-get install -y apptainer libopenmpi-dev python3-pip
27
pip install ansible
28
29
+ - name: Get libopenmpi-dev version
30
+ id: get_mpi_version
31
+ run: |
32
+ mpi_version=$(dpkg-query -W -f='${Version}' libopenmpi-dev | cut -f1 -d'-')
33
+ echo "Setting MPI version to: $mpi_version"
34
+ sed -i "s/version: 4.1.5/version: $mpi_version/g" config.yaml
35
+
36
- name: Setup tmate session
37
uses: mxschmitt/action-tmate@v3
38
if: ${{ github.event_name == 'workflow_dispatch' && inputs.debug_enabled }}
0 commit comments