forked from dmlc/xgboost
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[BUILD] Dockerfile and Jenkinsfile revisited (dmlc#2514)
Includes: - Dockerfile changes - Dockerfile clean up - Fix execution privileges of files used from Dockerfile. - New Dockerfile entrypoint to replace with_user script - Defined a placeholders for CPU testing (script and Dockerfile) - Jenkinsfile - Jenkins file milestone defined - Single source code checkout and propagation via stash/unstash - Bash needs to be explicitly used in launching make build, since we need access to environment - Jenkinsfile build factory for cmake and make style of jobs - Archivation of artifacts (*.so, *.whl, *.egg) produced by cmake build Missing: - CPU testing - Python3 env build and testing
- Loading branch information
1 parent
66874f5
commit 33ee7d1
Showing
10 changed files
with
301 additions
and
106 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
FROM ubuntu:14.04 | ||
|
||
# Environment | ||
ENV DEBIAN_FRONTEND noninteractive | ||
|
||
# Install all basic requirements | ||
RUN \ | ||
apt-get update -q -y && \ | ||
apt-get -y dist-upgrade && \ | ||
apt-get -y --no-install-recommends install \ | ||
build-essential \ | ||
wget \ | ||
unzip \ | ||
gfortran \ | ||
# BLAS | ||
libatlas-base-dev \ | ||
# Python 2 | ||
python-setuptools \ | ||
python-pip \ | ||
python-dev \ | ||
&& \ | ||
# CMake | ||
wget http://www.cmake.org/files/v3.5/cmake-3.5.2.tar.gz && \ | ||
tar -xvzf cmake-3.5.2.tar.gz && \ | ||
cd cmake-3.5.2/ && ./configure && make && make install && cd ../ && \ | ||
# Clean up | ||
rm -rf cmake-3.5.2/ && rm -rf cmake-3.5.2.tar.gz && \ | ||
apt-get clean && \ | ||
rm -rf /var/cache/apt/* | ||
|
||
|
||
# Install Python packages | ||
RUN pip install numpy nose scipy scikit-learn wheel | ||
|
||
ENV GOSU_VERSION 1.10 | ||
|
||
# Install lightweight sudo (not bound to TTY) | ||
RUN set -ex; \ | ||
dpkgArch="$(dpkg --print-architecture | awk -F- '{ print $NF }')" && \ | ||
wget -O /usr/local/bin/gosu "https://github.com/tianon/gosu/releases/download/$GOSU_VERSION/gosu-$dpkgArch" && \ | ||
chmod +x /usr/local/bin/gosu && \ | ||
gosu nobody true | ||
|
||
# Default entry-point to use if running locally | ||
# It will preserve attributes of created files | ||
COPY entrypoint.sh /scripts/ | ||
|
||
WORKDIR /workspace | ||
ENTRYPOINT ["/scripts/entrypoint.sh"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,49 @@ | ||
FROM nvidia/cuda:8.0-devel-ubuntu14.04 | ||
|
||
RUN apt-get update && apt-get -y upgrade | ||
# CMAKE | ||
RUN sudo apt-get install -y build-essential | ||
RUN apt-get install -y wget | ||
RUN wget http://www.cmake.org/files/v3.5/cmake-3.5.2.tar.gz | ||
RUN tar -xvzf cmake-3.5.2.tar.gz | ||
RUN cd cmake-3.5.2/ && ./configure && make && sudo make install | ||
|
||
# BLAS | ||
RUN apt-get install -y libatlas-base-dev | ||
|
||
# PYTHON2 | ||
RUN apt-get install -y python-setuptools python-pip python-dev unzip gfortran | ||
RUN pip install numpy nose scipy scikit-learn | ||
# Environment | ||
ENV DEBIAN_FRONTEND noninteractive | ||
|
||
# Install all basic requirements | ||
RUN \ | ||
apt-get update -q -y && \ | ||
apt-get -y dist-upgrade && \ | ||
apt-get -y --no-install-recommends install \ | ||
build-essential \ | ||
wget \ | ||
unzip \ | ||
gfortran \ | ||
# BLAS | ||
libatlas-base-dev \ | ||
# Python 2 | ||
python-setuptools \ | ||
python-pip \ | ||
python-dev \ | ||
&& \ | ||
# CMake | ||
wget http://www.cmake.org/files/v3.5/cmake-3.5.2.tar.gz && \ | ||
tar -xvzf cmake-3.5.2.tar.gz && \ | ||
cd cmake-3.5.2/ && ./configure && make && make install && cd ../ && \ | ||
# Clean up | ||
rm -rf cmake-3.5.2/ && rm -rf cmake-3.5.2.tar.gz && \ | ||
apt-get clean && \ | ||
rm -rf /var/cache/apt/* | ||
|
||
|
||
# Install Python packages | ||
RUN pip install numpy nose scipy scikit-learn wheel | ||
|
||
ENV GOSU_VERSION 1.10 | ||
|
||
# Install lightweight sudo (not bound to TTY) | ||
RUN set -ex; \ | ||
dpkgArch="$(dpkg --print-architecture | awk -F- '{ print $NF }')" && \ | ||
wget -O /usr/local/bin/gosu "https://github.com/tianon/gosu/releases/download/$GOSU_VERSION/gosu-$dpkgArch" && \ | ||
chmod +x /usr/local/bin/gosu && \ | ||
gosu nobody true | ||
|
||
# Default entry-point to use if running locally | ||
# It will preserve attributes of created files | ||
COPY entrypoint.sh /scripts/ | ||
|
||
WORKDIR /workspace | ||
ENTRYPOINT ["/scripts/entrypoint.sh"] |
3 changes: 2 additions & 1 deletion
3
tests/ci_build/build_gpu_cmake.sh → tests/ci_build/build_via_cmake.sh
100644 → 100755
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
#!/usr/bin/env bash | ||
|
||
make clean | ||
mkdir build | ||
cd build | ||
cmake .. -DPLUGIN_UPDATER_GPU=ON | ||
cmake .. "$@" | ||
make |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#!/usr/bin/env bash | ||
|
||
make clean | ||
make "$@" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.