Skip to content
Snippets Groups Projects
Commit bb4a08be authored by Pietro Incardona's avatar Pietro Incardona
Browse files

Fixing CI

parent 3426e479
No related branches found
No related tags found
No related merge requests found
Pipeline #3815 failed
......@@ -17,6 +17,12 @@ if [ x"$hostname" == x"cifarm-ubuntu-node" ]; then
export PATH="/opt/bin:$PATH"
fi
if [ x"$hostname" == x"cifarm-mac-node.mpi-cbg.de" ]; then
echo "Mac node"
./install_CMAKE_on_CI.sh $HOME/openfpm_dependencies/openfpm_devices/CMAKE 4
export PATH="$HOME/openfpm_dependencies/openfpm_devices/CMAKE/bin:$PATH"
fi
mkdir src/config
if [ ! -d $HOME/openfpm_dependencies/openfpm_devices/BOOST ]; then
......
#!/bin/bash
if [ -d "$1/CMAKE" ]; then
exit 0
fi
wget https://github.com/Kitware/CMake/releases/download/v3.20.3/cmake-3.20.3.tar.gz
tar -xvf cmake-3.20.3.tar.gz
cd cmake-3.20.3
./bootstrap --prefix=$1/CMAKE
make
make install
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment