revert ci removal

This commit is contained in:
Valient Gough 2016-09-08 21:57:20 +02:00
parent 4c8a97825c
commit 788443e85d
No known key found for this signature in database
GPG Key ID: B515DCEB95967051
3 changed files with 17 additions and 0 deletions

5
ci/config.sh Executable file
View File

@ -0,0 +1,5 @@
set -x
set -e
mkdir build
cd build
cmake -DCMAKE_INSTALL_PREFIX:PATH=/tmp/encfs -DCMAKE_BUILD_TYPE=Debug -DMINIGLOG=ON ..

7
ci/install-cmake.sh Executable file
View File

@ -0,0 +1,7 @@
set -x
set -e
if [ ! -e ci/cmake/bin/cmake ]; then
wget http://www.cmake.org/files/v3.1/cmake-3.1.3-Linux-x86_64.tar.gz
tar -xzf cmake-3.1.3-Linux-x86_64.tar.gz
mv cmake-3.1.3-Linux-x86_64 ci/cmake
fi

5
ci/install-gcc.sh Executable file
View File

@ -0,0 +1,5 @@
set -x
set -e
sudo apt-get install -y gcc-4.8 g++-4.8
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-4.8 100
sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.8 100