forked from apache/aurora-packaging
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild-artifact.sh
executable file
·81 lines (69 loc) · 2.01 KB
/
build-artifact.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
#!/bin/bash
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
set -eu
print_available_builders() {
find builder -name Dockerfile | sed "s/\/Dockerfile$//"
}
realpath() {
echo "$(cd "$(dirname "$1")"; pwd)/$(basename "$1")"
}
download_src_tar() {
ls $(pwd)/aurora-${AURORA_VERSION}.tar.gz || curl -L -o $(pwd)/aurora-${AURORA_VERSION}.tar.gz "https://github.com/apache/aurora/archive/${AURORA_VERSION}.tar.gz"
}
run_build() {
BUILDER_DIR=$1
AURORA_VERSION=$2
echo "building $AURORA_VERSION"
IMAGE_NAME="aurora-$(basename $BUILDER_DIR)"
echo "Using docker image $IMAGE_NAME"
docker build -t "$IMAGE_NAME" "$BUILDER_DIR"
ARTIFACT_DIR="$(pwd)/dist/$BUILDER_DIR"
mkdir -p $ARTIFACT_DIR
download_src_tar
docker run \
--rm \
-e AURORA_VERSION=$AURORA_VERSION \
-v "$(pwd)/specs:/specs:ro" \
-v "$(pwd)/aurora-${AURORA_VERSION}.tar.gz:/src.tar.gz:ro" \
-v "$ARTIFACT_DIR:/dist" \
-t "$IMAGE_NAME" /build.sh
echo "Produced artifacts in $ARTIFACT_DIR:"
ls $ARTIFACT_DIR
}
case $# in
1)
echo "building using all builders"
for builder in $(print_available_builders); do
run_build $builder $1
echo $builder
done
;;
2)
echo "building specific"
run_build "$@"
;;
*)
echo 'usage:'
echo 'to build all artifacts:'
echo " $0 AURORA_VERSION"
echo
echo 'or to build a specific artifact:'
echo " $0 BUILDER AURORA_VERSION"
echo
echo 'Where BUILDER is a builder directory in:'
print_available_builders
exit 1
;;
esac