mirror of
https://github.com/vgough/encfs.git
synced 2024-11-21 15:33:16 +01:00
revert ci removal
This commit is contained in:
parent
4c8a97825c
commit
788443e85d
5
ci/config.sh
Executable file
5
ci/config.sh
Executable 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
7
ci/install-cmake.sh
Executable 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
5
ci/install-gcc.sh
Executable 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
|
Loading…
Reference in New Issue
Block a user