Merge pull request #3 from thewtex/ci

Ci
This commit is contained in:
Matt McCormick 2016-03-02 14:32:44 -05:00
commit 19dc7051ea
4 changed files with 44 additions and 12 deletions

View File

@ -7,6 +7,7 @@ RUN apt-get update && apt-get -y install \
bash \ bash \
build-essential \ build-essential \
bzip2 \ bzip2 \
ca-certificates \
curl \ curl \
file \ file \
git \ git \
@ -22,24 +23,25 @@ RUN apt-get update && apt-get -y install \
tar \ tar \
vim \ vim \
wget \ wget \
xz-utils xz-utils && \
apt-get -y clean
# Build and install CMake from source. # Build and install CMake from source.
WORKDIR /usr/src WORKDIR /usr/src
RUN git clone git://cmake.org/cmake.git CMake && \ RUN git clone git://cmake.org/cmake.git CMake && \
cd CMake && \ cd CMake && \
git checkout v3.4.3 git checkout v3.4.3 && \
RUN mkdir CMake-build cd .. && mkdir CMake-build && \
WORKDIR /usr/src/CMake-build /usr/src/CMake/bootstrap \
RUN /usr/src/CMake/bootstrap \
--parallel=$(nproc) \ --parallel=$(nproc) \
--prefix=/usr && \ --prefix=/usr && \
make -j$(nproc) && \ make -j$(nproc) && \
./bin/cmake -DCMAKE_USE_SYSTEM_CURL:BOOL=ON \ ./bin/cmake -DCMAKE_USE_SYSTEM_CURL:BOOL=ON \
-DCMAKE_BUILD_TYPE:STRING=Release \
-DCMAKE_USE_OPENSSL:BOOL=ON . && \ -DCMAKE_USE_OPENSSL:BOOL=ON . && \
make install && \ make install && \
rm -rf * cd .. && \
WORKDIR /usr/src rm -rf CMake*
# Build and install Ninja from source # Build and install Ninja from source
RUN git clone https://github.com/martine/ninja.git && \ RUN git clone https://github.com/martine/ninja.git && \
@ -47,4 +49,5 @@ RUN git clone https://github.com/martine/ninja.git && \
git checkout v1.6.0 && \ git checkout v1.6.0 && \
python ./configure.py --bootstrap && \ python ./configure.py --bootstrap && \
./ninja && \ ./ninja && \
cp ./ninja /usr/bin/ cp ./ninja /usr/bin/ && \
cd .. && rm -rf ninja

View File

@ -1,4 +0,0 @@
cross-compilers
===============
Dockerfiles for cross compiling environments

14
README.rst Normal file
View File

@ -0,0 +1,14 @@
cross-compilers
===============
Dockerfiles for cross compiling environments
--------------------------------------------
.. image:: https://circleci.com/gh/thewtex/cross-compilers/tree/master.svg?style=svg
:target: https://circleci.com/gh/thewtex/cross-compilers/tree/master
.. |base-images| image:: https://badge.imagelayers.io/thewtex/cross-compiler-base:latest.svg
:target: https://imagelayers.io/?images=thewtex/cross-compiler-base:latest
thewtex/cross-compiler-base
|base-images| Base image for other toolchain images. From Debian Jessie with GCC,
make, autotools, CMake, Ninja, Git, and Python.

19
circle.yml Normal file
View File

@ -0,0 +1,19 @@
machine:
services:
- docker
dependencies:
override:
- docker info
- docker pull thewtex/cross-compiler-base
test:
override:
- make base
deployment:
hub:
branch: master
commands:
- docker login -e $DOCKER_EMAIL -u $DOCKER_USER -p $DOCKER_PASS
- docker push thewtex/cross-compiler-base