forked from craimbert/aurora-packaging
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build-artifact.sh
executable file
·78 lines (67 loc) · 1.87 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
#!/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")"
}
run_build() {
BUILDER_DIR=$1
RELEASE_TAR=$2
AURORA_VERSION=$3
env
IMAGE_NAME="aurora-$(basename $BUILDER_DIR)"
echo "Using docker image $IMAGE_NAME"
docker build --pull -t "$IMAGE_NAME" "$BUILDER_DIR"
CONTAINER_NAME="${AURORA_VERSION}"
docker run \
--name="${CONTAINER_NAME}" \
-e AURORA_VERSION=$AURORA_VERSION \
--net=host \
-v "$(pwd)/specs:/specs:ro" \
-v "$(realpath $RELEASE_TAR):/src.tar.gz:ro" \
-t "$IMAGE_NAME" /build.sh
artifact_dir="artifacts/$IMAGE_NAME"
mkdir -p "$artifact_dir"
docker cp "${CONTAINER_NAME}:/dist" "$artifact_dir"
docker rm "${CONTAINER_NAME}"
echo "Produced artifacts in $artifact_dir:"
ls -R "$artifact_dir"
}
case $# in
2)
for builder in $(print_available_builders); do
run_build $builder $1 $2
echo $builder
done
;;
3)
run_build "$@"
;;
*)
echo 'usage:'
echo 'to build all artifacts:'
echo " $0 RELEASE_TAR AURORA_VERSION"
echo
echo 'or to build a specific artifact:'
echo " $0 BUILDER RELEASE_TAR AURORA_VERSION"
echo
echo 'Where BUILDER is a builder directory in:'
print_available_builders
exit 1
;;
esac