We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 26a0aee commit 2fe4c4eCopy full SHA for 2fe4c4e
1 file changed
.github/workflows/cmake-multi-platform.yml
@@ -54,6 +54,17 @@ jobs:
54
run: |
55
echo "build-output-dir=${{ github.workspace }}/build" >> "$GITHUB_OUTPUT"
56
57
+ - name: Install MPI libraries on Ubuntu
58
+ if: matrix.os == 'ubuntu-latest'
59
+ run: |
60
+ sudo apt-get update
61
+ sudo apt-get install -y libopenmpi-dev openmpi-bin
62
+
63
+ - name: Install MPI libraries on Windows
64
+ if: matrix.os == 'windows-latest'
65
66
+ choco install openmpi -y
67
68
- name: Configure CMake
69
# Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make.
70
# See https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html?highlight=cmake_build_type
0 commit comments