Enable docker support for centos builds
- Added an option '--buildindocker <osname>' to build.sh - Fixed bug which caused packaging to be skipped by default. - Fixed bug which caused tarballs to be generated twice. - Fixed bug to propagate build params(like debug, nopackage) to docker build.
This commit is contained in:
parent
fee3785ad2
commit
5155aa61d7
10 changed files with 94 additions and 62 deletions
18
build.sh
18
build.sh
|
@ -23,15 +23,19 @@ source "$REPOROOT/scripts/build/process-args.sh"
|
||||||
# once that is fixed, we should remove the NOPACKAGE flag and do the full build either in
|
# once that is fixed, we should remove the NOPACKAGE flag and do the full build either in
|
||||||
# or out of docker.
|
# or out of docker.
|
||||||
if [ ! -z "$BUILD_IN_DOCKER" ]; then
|
if [ ! -z "$BUILD_IN_DOCKER" ]; then
|
||||||
export BUILD_COMMAND="/opt/code/scripts/build/build.sh NOPACKAGE"
|
export BUILD_COMMAND=". /opt/code/scripts/build/process-args.sh $@ ; . /opt/code/scripts/build/build.sh"
|
||||||
$REPOROOT/scripts/docker/dockerbuild.sh
|
$REPOROOT/scripts/docker/dockerbuild.sh
|
||||||
else
|
else
|
||||||
$REPOROOT/scripts/build/build.sh NOPACKAGE
|
$REPOROOT/scripts/build/build.sh
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ ! -z "$PACKAGE_IN_DOCKER" ]; then
|
if [ ! -z "$NOPACKAGE" ]; then
|
||||||
export BUILD_COMMAND="/opt/code/scripts/package/package-native.sh"
|
header "Skipping packaging"
|
||||||
$REPOROOT/scripts/docker/dockerbuild.sh
|
|
||||||
else
|
else
|
||||||
$REPOROOT/scripts/package/package.sh
|
if [ ! -z "$PACKAGE_IN_DOCKER" ]; then
|
||||||
fi
|
export BUILD_COMMAND="$REPOROOT/scripts/package/package.sh"
|
||||||
|
$REPOROOT/scripts/docker/dockerbuild.sh
|
||||||
|
else
|
||||||
|
$REPOROOT/scripts/package/package.sh
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
|
@ -43,13 +43,3 @@ DOTNET_HOME=$STAGE2_DIR DOTNET_TOOLS=$STAGE2_DIR $REPOROOT/scripts/test/runtests
|
||||||
|
|
||||||
header "Validating Dependencies"
|
header "Validating Dependencies"
|
||||||
$REPOROOT/scripts/test/validate-dependencies.sh
|
$REPOROOT/scripts/test/validate-dependencies.sh
|
||||||
|
|
||||||
header "Generating tarball"
|
|
||||||
$REPOROOT/scripts/package/package.sh
|
|
||||||
|
|
||||||
if [ ! -z "$NOPACKAGE" ]; then
|
|
||||||
header "Generating Native Installer"
|
|
||||||
$REPOROOT/scripts/package/package-native.sh
|
|
||||||
else
|
|
||||||
header "Skipping packaging"
|
|
||||||
fi
|
|
|
@ -4,25 +4,31 @@
|
||||||
# Licensed under the MIT license. See LICENSE file in the project root for full license information.
|
# Licensed under the MIT license. See LICENSE file in the project root for full license information.
|
||||||
#
|
#
|
||||||
|
|
||||||
for i in "$@"
|
params=("$@")
|
||||||
|
|
||||||
|
for i in "${!params[@]}"
|
||||||
do
|
do
|
||||||
lowerI="$(echo $i | awk '{print tolower($0)}')"
|
lowerI="$(echo ${params[$i]} | awk '{print tolower($0)}')"
|
||||||
case $lowerI in
|
case $lowerI in
|
||||||
release)
|
"release" | "-release")
|
||||||
export CONFIGURATION=Release
|
export CONFIGURATION=Release
|
||||||
;;
|
;;
|
||||||
debug)
|
"debug" | "-debug")
|
||||||
export CONFIGURATION=Debug
|
export CONFIGURATION=Debug
|
||||||
;;
|
;;
|
||||||
offline)
|
"offline" | "-offline")
|
||||||
export OFFLINE=true
|
export OFFLINE=true
|
||||||
;;
|
;;
|
||||||
nopackage)
|
"nopackage" | "-nopackage")
|
||||||
export NOPACKAGE=true
|
export NOPACKAGE=true
|
||||||
;;
|
;;
|
||||||
nocache)
|
"nocache" | "-nocache")
|
||||||
export NOCACHE=--No-Cache
|
export NOCACHE=--No-Cache
|
||||||
;;
|
;;
|
||||||
|
"--buildindocker")
|
||||||
|
export BUILD_IN_DOCKER=true
|
||||||
|
export DOCKER_OS=${params[i+1]}
|
||||||
|
;;
|
||||||
*)
|
*)
|
||||||
esac
|
esac
|
||||||
done
|
done
|
||||||
|
|
|
@ -28,18 +28,18 @@ if [ -z "$HOME" ]; then
|
||||||
mkdir -p $HOME
|
mkdir -p $HOME
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# Set Docker Container name to be unique
|
||||||
|
container_name=""
|
||||||
|
|
||||||
|
#Jenkins
|
||||||
|
[ ! -z "$BUILD_TAG" ] && container_name="$BUILD_TAG"
|
||||||
|
#VSO
|
||||||
|
[ ! -z "$BUILD_BUILDID" ] && container_name="$BUILD_BUILDID"
|
||||||
|
|
||||||
|
export DOTNET_BUILD_CONTAINER_NAME="$container_name"
|
||||||
|
|
||||||
|
|
||||||
if [[ "$OSNAME" == "ubuntu" ]]; then
|
if [[ "$OSNAME" == "ubuntu" ]]; then
|
||||||
# Set Docker Container name to be unique
|
|
||||||
container_name=""
|
|
||||||
|
|
||||||
#Jenkins
|
|
||||||
[ ! -z "$BUILD_TAG" ] && container_name="$BUILD_TAG"
|
|
||||||
#VSO
|
|
||||||
[ ! -z "$BUILD_BUILDID" ] && container_name="$BUILD_BUILDID"
|
|
||||||
|
|
||||||
export DOTNET_BUILD_CONTAINER_NAME="$container_name"
|
|
||||||
export PACKAGE_IN_DOCKER="true"
|
export PACKAGE_IN_DOCKER="true"
|
||||||
export NOCACHE="--no-cache"
|
export NOCACHE="--no-cache"
|
||||||
unset BUILD_IN_DOCKER
|
unset BUILD_IN_DOCKER
|
||||||
|
|
|
@ -11,7 +11,6 @@ while [ -h "$SOURCE" ]; do # resolve $SOURCE until the file is no longer a symli
|
||||||
done
|
done
|
||||||
COMMONDIR="$( cd -P "$( dirname "$COMMONSOURCE" )" && pwd )"
|
COMMONDIR="$( cd -P "$( dirname "$COMMONSOURCE" )" && pwd )"
|
||||||
|
|
||||||
source "$COMMONDIR/_clang.sh"
|
|
||||||
source "$COMMONDIR/_prettyprint.sh"
|
source "$COMMONDIR/_prettyprint.sh"
|
||||||
source "$COMMONDIR/_rid.sh"
|
source "$COMMONDIR/_rid.sh"
|
||||||
|
|
||||||
|
|
|
@ -13,6 +13,7 @@ done
|
||||||
DIR="$( cd -P "$( dirname "$SOURCE" )" && pwd )"
|
DIR="$( cd -P "$( dirname "$SOURCE" )" && pwd )"
|
||||||
|
|
||||||
source "$DIR/../common/_common.sh"
|
source "$DIR/../common/_common.sh"
|
||||||
|
source "$DIR/../common/_clang.sh"
|
||||||
|
|
||||||
header "Building corehost"
|
header "Building corehost"
|
||||||
|
|
||||||
|
|
49
scripts/docker/centos/Dockerfile
Normal file
49
scripts/docker/centos/Dockerfile
Normal file
|
@ -0,0 +1,49 @@
|
||||||
|
#
|
||||||
|
# Copyright (c) .NET Foundation and contributors. All rights reserved.
|
||||||
|
# Licensed under the MIT license. See LICENSE file in the project root for full license information.
|
||||||
|
#
|
||||||
|
|
||||||
|
# Dockerfile that creates a container suitable to build dotnet-cli
|
||||||
|
FROM centos:7.1.1503
|
||||||
|
|
||||||
|
RUN yum -q -y install deltarpm
|
||||||
|
RUN yum -q -y install epel-release
|
||||||
|
# RUN yum -y update
|
||||||
|
|
||||||
|
# This could become a "microsoft/coreclr" image, since it just installs the dependencies for CoreCLR (and stdlib)
|
||||||
|
# Install CoreCLR and CoreFx dependencies
|
||||||
|
RUN yum -q -y install unzip libunwind gettext libcurl-devel openssl-devel zlib libicu-devel
|
||||||
|
|
||||||
|
# RUN apt-get update && \
|
||||||
|
# apt-get -qqy install unzip curl libicu-dev libunwind8 gettext libssl-dev libcurl3-gnutls zlib1g liblttng-ust-dev lldb-3.6-dev lldb-3.6
|
||||||
|
|
||||||
|
# Install Build Prereqs
|
||||||
|
RUN yum -q -y install tar git cmake clang make
|
||||||
|
|
||||||
|
# Use clang as c++ compiler
|
||||||
|
RUN update-alternatives --install /usr/bin/c++ c++ /usr/bin/clang++ 100
|
||||||
|
RUN update-alternatives --set c++ /usr/bin/clang++
|
||||||
|
|
||||||
|
# Install azure cli. We need this to publish artifacts.
|
||||||
|
RUN yum -y install nodejs && \
|
||||||
|
yum -y install npm && \
|
||||||
|
npm install -g azure-cli
|
||||||
|
|
||||||
|
|
||||||
|
RUN yum -q -y install sudo
|
||||||
|
|
||||||
|
# Setup User to match Host User, and give superuser permissions
|
||||||
|
ARG USER_ID=0
|
||||||
|
RUN useradd -m code_executor -u ${USER_ID} -g root
|
||||||
|
RUN echo 'code_executor ALL=(ALL) NOPASSWD:ALL' >> /etc/sudoers
|
||||||
|
|
||||||
|
# With the User Change, we need to change permssions on these directories
|
||||||
|
RUN chmod -R a+rwx /usr/local
|
||||||
|
RUN chmod -R a+rwx /home
|
||||||
|
RUN chmod -R 755 /usr/bin/sudo
|
||||||
|
|
||||||
|
# Set user to the one we just created
|
||||||
|
USER ${USER_ID}
|
||||||
|
|
||||||
|
# Set working directory
|
||||||
|
WORKDIR /opt/code
|
|
@ -21,11 +21,12 @@ cd $REPOROOT
|
||||||
[ -z "$DOTNET_BUILD_CONTAINER_TAG" ] && DOTNET_BUILD_CONTAINER_TAG="dotnetcli-build"
|
[ -z "$DOTNET_BUILD_CONTAINER_TAG" ] && DOTNET_BUILD_CONTAINER_TAG="dotnetcli-build"
|
||||||
[ -z "$DOTNET_BUILD_CONTAINER_NAME" ] && DOTNET_BUILD_CONTAINER_NAME="dotnetcli-build-container"
|
[ -z "$DOTNET_BUILD_CONTAINER_NAME" ] && DOTNET_BUILD_CONTAINER_NAME="dotnetcli-build-container"
|
||||||
[ -z "$DOCKER_HOST_SHARE_DIR" ] && DOCKER_HOST_SHARE_DIR=$(pwd)
|
[ -z "$DOCKER_HOST_SHARE_DIR" ] && DOCKER_HOST_SHARE_DIR=$(pwd)
|
||||||
[ -z "$BUILD_COMMAND" ] && BUILD_COMMAND="/opt/code/build.sh"
|
[ -z "$DOCKER_OS" ] && DOCKER_OS=$OSNAME
|
||||||
|
[ -z "$BUILD_COMMAND" ] && BUILD_COMMAND="/opt/code/scripts/build/build.sh"
|
||||||
|
|
||||||
# Build the docker container (will be fast if it is already built)
|
# Build the docker container (will be fast if it is already built)
|
||||||
header "Building Docker Container"
|
header "Building Docker Container"
|
||||||
docker build --build-arg USER_ID=$(id -u) -t $DOTNET_BUILD_CONTAINER_TAG scripts/docker/
|
docker build --build-arg USER_ID=$(id -u) -t $DOTNET_BUILD_CONTAINER_TAG scripts/docker/$DOCKER_OS
|
||||||
|
|
||||||
# Run the build in the container
|
# Run the build in the container
|
||||||
header "Launching build in Docker Container"
|
header "Launching build in Docker Container"
|
||||||
|
@ -43,4 +44,5 @@ docker run -t --rm --sig-proxy=true \
|
||||||
-e REPO_USER \
|
-e REPO_USER \
|
||||||
-e REPO_PASS \
|
-e REPO_PASS \
|
||||||
-e REPO_SERVER \
|
-e REPO_SERVER \
|
||||||
$DOTNET_BUILD_CONTAINER_TAG $BUILD_COMMAND $1
|
$DOTNET_BUILD_CONTAINER_TAG \
|
||||||
|
bash -c "${BUILD_COMMAND}"
|
||||||
|
|
|
@ -16,30 +16,11 @@ source "$DIR/../common/_common.sh"
|
||||||
|
|
||||||
if [ -z "$DOTNET_BUILD_VERSION" ]; then
|
if [ -z "$DOTNET_BUILD_VERSION" ]; then
|
||||||
TIMESTAMP=$(date "+%Y%m%d%H%M%S")
|
TIMESTAMP=$(date "+%Y%m%d%H%M%S")
|
||||||
DOTNET_BUILD_VERSION=0.0.1-alpha-t$TIMESTAMP
|
DOTNET_BUILD_VERSION=0.0.1-dev-t$TIMESTAMP
|
||||||
fi
|
fi
|
||||||
|
|
||||||
STAGE2_DIR=$REPOROOT/artifacts/$RID/stage2
|
header "Generating tarball"
|
||||||
|
$DIR/package-dnvm.sh
|
||||||
|
|
||||||
if [ ! -d "$STAGE2_DIR" ]; then
|
header "Generating Native Installer"
|
||||||
error "missing stage2 output in $STAGE2_DIR" 1>&2
|
$DIR/package-native.sh
|
||||||
exit
|
|
||||||
fi
|
|
||||||
|
|
||||||
PACKAGE_DIR=$REPOROOT/artifacts/packages/dnvm
|
|
||||||
[ -d "$PACKAGE_DIR" ] || mkdir -p $PACKAGE_DIR
|
|
||||||
|
|
||||||
PACKAGE_SHORT_NAME=dotnet-${OSNAME}-x64.${DOTNET_BUILD_VERSION}
|
|
||||||
PACKAGE_NAME=$PACKAGE_DIR/${PACKAGE_SHORT_NAME}.tar.gz
|
|
||||||
|
|
||||||
cd $STAGE2_DIR
|
|
||||||
|
|
||||||
header "Packaging $PACKAGE_SHORT_NAME"
|
|
||||||
|
|
||||||
# Tar up the stage2 artifacts
|
|
||||||
# We need both "*" and ".version" to ensure we pick up that file
|
|
||||||
tar -czf $PACKAGE_NAME * .version
|
|
||||||
|
|
||||||
info "Packaged stage2 to $PACKAGE_NAME"
|
|
||||||
|
|
||||||
$REPOROOT/scripts/publish/publish.sh $PACKAGE_NAME
|
|
||||||
|
|
Loading…
Reference in a new issue