We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a76005 commit 9305ce5Copy full SHA for 9305ce5
.github/workflows/tests_cmake_t8code_w_other_compilers.yml
@@ -67,6 +67,17 @@ jobs:
67
run: sudo apt-get install clang -y
68
- name: Check clang version
69
run: clang --version
70
+ - name: Install openmpi with CLANG
71
+ run: |
72
+ mkdir install_ompi_clang
73
+ wget https://download.open-mpi.org/release/open-mpi/v4.1/openmpi-4.1.6.tar.gz
74
+ tar xf openmpi-4.1.6.tar.gz
75
+ cd openmpi-4.1.6
76
+ CC=clang CXX=clang++ ./configure --prefix=../install_ompi_clang
77
+ make -j$(nproc)
78
+ make install
79
+ cd ..
80
+ export PATH=$(pwd)/install_ompi_clang/bin:$PATH
81
- name: Show MPI version
82
run: |
83
export CC=clang
0 commit comments