Skip to content

Commit 782f170

Browse files
committed
Use new docker image t8-clang-dependencies [run ci]
1 parent b943593 commit 782f170

File tree

1 file changed

+26
-26
lines changed

1 file changed

+26
-26
lines changed

.github/workflows/tests_cmake_t8code_w_other_compilers.yml

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
t8code_cmake_tests:
5454
timeout-minutes: 60
5555
runs-on: ubuntu-latest
56-
container: dlramr/t8code-ubuntu:t8-dependencies
56+
container: dlramr/t8code-ubuntu:t8-clang-dependencies
5757
steps:
5858
#
5959
# Setup
@@ -63,33 +63,33 @@ jobs:
6363
fetch-depth: 0
6464
- name: Update packages
6565
run: apt-get update && apt-get upgrade -y
66-
- name: Install some basic packages
67-
run: |
68-
apt-get install -y wget tar lld make \
69-
libc6-dev libc++-dev libc++abi-dev \
70-
pkg-config \
71-
git
72-
# zlib1g-dev \
73-
# libssl-dev \
74-
# bzip2-dev \
75-
# sqlite3-dev \
76-
- name: Install CLANG
77-
run: apt-get install clang -y
66+
# - name: Install some basic packages
67+
# run: |
68+
# apt-get install -y wget tar lld make \
69+
# libc6-dev libc++-dev libc++abi-dev \
70+
# pkg-config \
71+
# git
72+
# # zlib1g-dev \
73+
# # libssl-dev \
74+
# # bzip2-dev \
75+
# # sqlite3-dev \
76+
# - name: Install CLANG
77+
# run: apt-get install clang -y
7878
- name: Check clang version
7979
run: clang --version
80-
- name: Install openmpi with CLANG
81-
run: |
82-
mkdir install_ompi_clang
83-
export OMPI_INSTALL_PATH=$(pwd)/install_ompi_clang
84-
wget https://download.open-mpi.org/release/open-mpi/v4.1/openmpi-4.1.6.tar.gz
85-
tar xf openmpi-4.1.6.tar.gz
86-
cd openmpi-4.1.6
87-
CC=clang CXX=clang++ ./configure --prefix=$OMPI_INSTALL_PATH
88-
make -j$(nproc)
89-
make install
90-
echo OMPI_INSTALL_PATH="${OMPI_INSTALL_PATH}" >> $GITHUB_ENV
91-
ls $OMPI_INSTALL_PATH/bin
92-
echo "${OMPI_INSTALL_PATH}/bin" >> $GITHUB_PATH
80+
# - name: Install openmpi with CLANG
81+
# run: |
82+
# mkdir install_ompi_clang
83+
# export OMPI_INSTALL_PATH=$(pwd)/install_ompi_clang
84+
# wget https://download.open-mpi.org/release/open-mpi/v4.1/openmpi-4.1.6.tar.gz
85+
# tar xf openmpi-4.1.6.tar.gz
86+
# cd openmpi-4.1.6
87+
# CC=clang CXX=clang++ ./configure --prefix=$OMPI_INSTALL_PATH
88+
# make -j$(nproc)
89+
# make install
90+
# echo OMPI_INSTALL_PATH="${OMPI_INSTALL_PATH}" >> $GITHUB_ENV
91+
# ls $OMPI_INSTALL_PATH/bin
92+
# echo "${OMPI_INSTALL_PATH}/bin" >> $GITHUB_PATH
9393
- name: Show MPI version
9494
run: mpicc --version
9595
- name: Export CLANG compiler flags

0 commit comments

Comments
 (0)