diff --git a/INSTALL.md b/INSTALL.md index 85cc8f3..7245aef 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -52,5 +52,5 @@ Compiling on Debian and Ubuntu See the automated build static in README.md for current build status on Ubuntu systems. -The build configuration files (.drone.yml and circle.yml) always contains up-to-date +The build configuration files (circle.yml) always contains up-to-date instructions to build EncFS on Ubuntu distributions. diff --git a/drone-config/Dockerfile b/drone-config/Dockerfile deleted file mode 100644 index baf9fcc..0000000 --- a/drone-config/Dockerfile +++ /dev/null @@ -1,26 +0,0 @@ -# Pull from base Ubuntu image -FROM ubuntu - -# Do system updates and install dependencies -RUN apt-get update -RUN apt-get -y upgrade -RUN sudo apt-get -y install git wget autopoint libfuse-dev -RUN apt-get clean - -# Download Drone.io -RUN wget http://downloads.drone.io/master/drone.deb -RUN dpkg -i drone.deb - -# Expose the Drone.io port -EXPOSE 8080 - -ENV DRONE_SERVER_PORT 0.0.0.0:8080 -ENV DRONE_DATABASE_DATASOURCE /var/lib/drone/drone.sqlite - -# Define our GitHub oAuth keys below -ENV DRONE_GITHUB_CLIENT -ENV DRONE_GITHUB_SECRET - -# The command we'll be running when the container starts -CMD /usr/local/bin/droned - diff --git a/drone-config/run.sh b/drone-config/run.sh deleted file mode 100644 index 3f036f3..0000000 --- a/drone-config/run.sh +++ /dev/null @@ -1,6 +0,0 @@ -docker run -d --name="drone-ci" \ - -p 8080:8080 \ - -v /var/lib/drone/ \ - -v /var/run/docker.sock:/var/run/docker.sock \ - -v /home/core/droneio/drone.sqlite:/var/lib/drone/drone.sqlite \ - encfs_drone diff --git a/drone-config/update.sh b/drone-config/update.sh deleted file mode 100644 index fd25822..0000000 --- a/drone-config/update.sh +++ /dev/null @@ -1 +0,0 @@ -docker build -t encfs_drone . diff --git a/drone-config/worker/Dockerfile b/drone-config/worker/Dockerfile deleted file mode 100644 index 96fd1a0..0000000 --- a/drone-config/worker/Dockerfile +++ /dev/null @@ -1,38 +0,0 @@ -FROM ubuntu:14.04 -MAINTAINER vgough - -# update and install dependencies -RUN apt-get update \ - && apt-get install -y \ - software-properties-common \ - wget \ - make \ - && echo 'deb http://llvm.org/apt/trusty/ llvm-toolchain-trusty-3.4 main' >> /etc/apt/sources.list \ - && wget -O - http://llvm.org/apt/llvm-snapshot.gpg.key|sudo apt-key add - \ - && add-apt-repository -y ppa:ubuntu-toolchain-r/test \ - && apt-get update \ - && apt-get install -y \ - gcc-4.9 g++-4.9 gcc-4.9-base \ - clang-3.4 lldb-3.4 \ - && apt-get clean \ - && update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-4.9 100 \ - && update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.9 100 - -# build cmake -RUN wget http://www.cmake.org/files/v3.2/cmake-3.2.2.tar.gz \ - && tar -xvf cmake-3.2.2.tar.gz -WORKDIR cmake-3.2.2 -RUN ./bootstrap \ - && make \ - && make install - - -RUN apt-get -y upgrade \ - && apt-get -y install \ - git \ - libfuse-dev \ - libssl-dev \ - gettext \ - libgettextpo-dev \ - && apt-get clean - diff --git a/drone-config/worker/update.sh b/drone-config/worker/update.sh deleted file mode 100644 index c24ea00..0000000 --- a/drone-config/worker/update.sh +++ /dev/null @@ -1 +0,0 @@ -docker build -t encfs_worker .