Unverified Commit 6036e07d authored by Nikita Titov's avatar Nikita Titov Committed by GitHub
Browse files

[ci] move Clang linking into docker (#2476)

* moved clang linking commands to docker

* switch to dev container

* test: switch compilers

* switch compilers back

* switch back to production container
parent e6505417
...@@ -19,10 +19,6 @@ if [[ $OS_NAME == "macos" ]]; then ...@@ -19,10 +19,6 @@ if [[ $OS_NAME == "macos" ]]; then
fi fi
wget -q -O conda.sh https://repo.continuum.io/miniconda/Miniconda${PYTHON_VERSION:0:1}-latest-MacOSX-x86_64.sh wget -q -O conda.sh https://repo.continuum.io/miniconda/Miniconda${PYTHON_VERSION:0:1}-latest-MacOSX-x86_64.sh
else # Linux else # Linux
if [[ $AZURE == "true" ]] && [[ $COMPILER == "clang" ]]; then
sudo update-alternatives --install /usr/bin/clang++ clang++ /usr/bin/clang++-8 100
sudo update-alternatives --install /usr/bin/clang clang /usr/bin/clang-8 100
fi
if [[ $TASK == "mpi" ]]; then if [[ $TASK == "mpi" ]]; then
sudo apt-get update sudo apt-get update
sudo apt-get install --no-install-recommends -y libopenmpi-dev openmpi-bin sudo apt-get install --no-install-recommends -y libopenmpi-dev openmpi-bin
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment