-
Notifications
You must be signed in to change notification settings - Fork 6.1k
/
Copy pathdocker_deploy_manual.sh
executable file
·74 lines (61 loc) · 1.77 KB
/
docker_deploy_manual.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
#!/usr/bin/env bash
set -e
REPO_ROOT="$(dirname "$0")/.."
# shellcheck source=scripts/common.sh
source "${REPO_ROOT}/scripts/common.sh"
image="ethereum/solc"
if (( $# < 1 || $# > 3 )); then
fail "Usage: $0 <tag/branch> [repo URL] [--no-push]"
fi
branch="$1"
repo_url="${2:-https://github.com/ethereum/solidity.git}"
if (( $# >= 3 )); then
[[ $3 == --no-push ]] || fail "Invalid flag: $3. Expected --no-push."
publish=false
else
publish=true
fi
#docker login
DIR=$(mktemp -d)
(
cd "$DIR"
git clone --recursive --depth 2 "$repo_url" -b "$branch" solidity
cd solidity
commithash=$(git rev-parse --short=8 HEAD)
echo -n "$commithash" > commit_hash.txt
version=$("$(dirname "$0")/get_version.sh")
if [ "$branch" = v"$version" ]
then
echo -n > prerelease.txt
else
date -u +"nightly.%Y.%-m.%-d" > prerelease.txt
fi
function tag_and_push
{
docker tag "$image:$1" "$image:$2"
[[ $publish == false ]] || docker push "$image:$2"
}
rm -rf .git
docker buildx build -t "$image":build -f scripts/Dockerfile . --progress=plain
tmp_container=$(docker create "$image":build sh)
# Alpine image
mkdir -p upload
docker cp "${tmp_container}":/usr/bin/solc upload/solc-static-linux
docker buildx build -t "$image":build-alpine -f scripts/Dockerfile_alpine . --progress=plain
if [ "$branch" = "develop" ]
then
tag_and_push build nightly
tag_and_push build nightly-"$version"-"$commithash"
tag_and_push build-alpine nightly-alpine
tag_and_push build-alpine nightly-alpine-"$version"-"$commithash"
elif [ "$branch" = v"$version" ]
then
tag_and_push build stable
tag_and_push build "$version"
tag_and_push build-alpine stable-alpine
tag_and_push build-alpine "$version"-alpine
else
echo "Not publishing docker image from branch or tag $branch"
fi
)
rm -rf "$DIR"