Skip to content

Commit 9305ce5

Browse files
committed
Trigger [run ci]
1 parent 5a76005 commit 9305ce5

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

.github/workflows/tests_cmake_t8code_w_other_compilers.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,17 @@ jobs:
6767
run: sudo apt-get install clang -y
6868
- name: Check clang version
6969
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
7081
- name: Show MPI version
7182
run: |
7283
export CC=clang

0 commit comments

Comments
 (0)