mirror of
https://github.com/vgough/encfs.git
synced 2024-11-22 07:53:31 +01:00
56978fb905
* drop circle, improve ci scripts * allow branch builds * travis: turn off sudo for one of the builds
24 lines
529 B
Bash
Executable File
24 lines
529 B
Bash
Executable File
#!/bin/bash -eu
|
|
|
|
: ${INTEGRATION:=false}
|
|
: ${CHECK:=false}
|
|
|
|
if [[ "$INTEGRATION" == "true" ]]; then
|
|
if uname -s | grep -q Linux; then
|
|
sudo modprobe fuse
|
|
elif uname -s | grep -q Darwin; then
|
|
brew cask install osxfuse
|
|
fi
|
|
fi
|
|
|
|
if [[ "$CHECK" == "true" ]]; then
|
|
if uname -s | grep -q Linux; then
|
|
wget https://cmake.org/files/v3.9/cmake-3.9.1-Linux-x86_64.tar.gz -O /tmp/cmake.tar.gz
|
|
tar -C /tmp/ -xf /tmp/cmake.tar.gz
|
|
sudo rm -f $(which cmake)
|
|
sudo ln -s $(ls -1 /tmp/cmake*/bin/cmake) /bin/
|
|
fi
|
|
fi
|
|
|
|
|