diff options
author | Lukas Larsson <[email protected]> | 2017-03-06 16:00:21 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2017-03-08 07:33:20 +0100 |
commit | a434fa4622023560e2877a1de698fd4fd15e6b31 (patch) | |
tree | fef9fa33e3b797c94762c58dce824777414c0964 /scripts | |
parent | 3a40993d69a9079f7c890bc365a5f74c96287815 (diff) | |
download | otp-a434fa4622023560e2877a1de698fd4fd15e6b31.tar.gz otp-a434fa4622023560e2877a1de698fd4fd15e6b31.tar.bz2 otp-a434fa4622023560e2877a1de698fd4fd15e6b31.zip |
Add docker images for building 32/64 bit erlang
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/Dockerfile.32 | 13 | ||||
-rw-r--r-- | scripts/Dockerfile.32.ubuntu | 5 | ||||
-rw-r--r-- | scripts/Dockerfile.64 | 13 | ||||
-rw-r--r-- | scripts/Dockerfile.64.ubuntu | 5 | ||||
-rwxr-xr-x | scripts/build-docker-otp | 13 | ||||
-rwxr-xr-x | scripts/build-otp | 6 |
6 files changed, 54 insertions, 1 deletions
diff --git a/scripts/Dockerfile.32 b/scripts/Dockerfile.32 new file mode 100644 index 0000000000..9622c48a17 --- /dev/null +++ b/scripts/Dockerfile.32 @@ -0,0 +1,13 @@ +FROM erlang/ubuntu-build:32bit + +COPY ./otp.tar.gz /buildroot/ + +WORKDIR /buildroot/ + +RUN tar xzf otp.tar.gz + +WORKDIR /buildroot/otp/ + +ENV MAKEFLAGS -j10 + +CMD ./scripts/build-otp diff --git a/scripts/Dockerfile.32.ubuntu b/scripts/Dockerfile.32.ubuntu new file mode 100644 index 0000000000..c334f74379 --- /dev/null +++ b/scripts/Dockerfile.32.ubuntu @@ -0,0 +1,5 @@ +FROM 32bit/ubuntu:16.04 + +RUN apt-get update + +RUN apt-get --fix-missing -y install build-essential m4 libncurses5-dev libssh-dev unixodbc-dev libgmp3-dev fop xsltproc default-jdk git autoconf libwxbase3.0-dev libwxgtk3.0-dev diff --git a/scripts/Dockerfile.64 b/scripts/Dockerfile.64 new file mode 100644 index 0000000000..47702b04a5 --- /dev/null +++ b/scripts/Dockerfile.64 @@ -0,0 +1,13 @@ +FROM erlang/ubuntu-build:64bit + +COPY ./otp.tar.gz /buildroot/ + +WORKDIR /buildroot/ + +RUN tar xzf otp.tar.gz + +WORKDIR /buildroot/otp/ + +ENV MAKEFLAGS -j10 + +CMD ./scripts/build-otp diff --git a/scripts/Dockerfile.64.ubuntu b/scripts/Dockerfile.64.ubuntu new file mode 100644 index 0000000000..514fea70b5 --- /dev/null +++ b/scripts/Dockerfile.64.ubuntu @@ -0,0 +1,5 @@ +FROM ubuntu:16.04 + +RUN apt-get update + +RUN apt-get --fix-missing -y install build-essential m4 libncurses5-dev libssh-dev unixodbc-dev libgmp3-dev fop xsltproc default-jdk git autoconf libwxbase3.0-dev libwxgtk3.0-dev diff --git a/scripts/build-docker-otp b/scripts/build-docker-otp new file mode 100755 index 0000000000..d796759691 --- /dev/null +++ b/scripts/build-docker-otp @@ -0,0 +1,13 @@ +#!/bin/bash + +if [ $# -lt 1 ]; then + echo "Usage $0 32|64 [command]" + exit 1 +fi + +ARCH="$1" + +git archive --format=tar.gz --prefix=otp/ HEAD >otp.tar.gz + +docker build -t otp --file scripts/Dockerfile.$ARCH . +docker run --volume="$PWD/logs:/buildroot/otp/logs" -i --rm otp $2 diff --git a/scripts/build-otp b/scripts/build-otp index da09fb8045..92031c79c8 100755 --- a/scripts/build-otp +++ b/scripts/build-otp @@ -14,7 +14,7 @@ function progress { } function do_and_log { - log="scripts/latest-log.$$" + log="logs/latest-log.$$" echo "" >$log echo -n "$1..." (progress $log) & @@ -32,6 +32,10 @@ function do_and_log { fi } +if [ ! -d "logs" ]; then + mkdir logs +fi + do_and_log "Autoconfing" autoconf do_and_log "Configuring" configure do_and_log "Building OTP" boot -a |