-
Notifications
You must be signed in to change notification settings - Fork 4
/
docker-build-push.sh
executable file
·87 lines (76 loc) · 2.45 KB
/
docker-build-push.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
82
83
84
85
86
87
#!/bin/bash
#
# Copyright 2024 Google LLC
#
# 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.
#
sortSemver() {
local lines=""
while read version; do
if [[ -z "${lines}" ]] ; then
lines=$(printf '%s' "${version}")
else
lines=$(printf '%s\n%s' "${lines}" "${version}")
fi
done
echo "$lines" | sed -r 's:^v::' | sed -r 's:-:~:' | sort -r -V | sed -r 's:^:v:' | sed -r 's:~:-:'
}
pickLatestRelease() {
local first=""
while read version; do
if [[ -z "${first}" ]] ; then
first="${version}"
fi
if [[ "${version}" != *"-"* ]] ; then
echo "${version}"
return
fi
done
echo "${first}"
}
getReleasedTags() {
git tag --list | grep "^v"
}
getLatestRelease() {
echo "$(getReleasedTags | sortSemver | pickLatestRelease)"
}
REGISTRY="${REGISTRY:-ghcr.io}"
GIT_REPO="${GIT_REPO:-apigee/apigee-go-gen}"
GIT_COMMIT=$(git rev-parse --short HEAD)
GIT_TAG=$(git describe --tags --abbrev=0)
if [[ "$(getLatestRelease)" == "${GIT_TAG}" ]] ; then
BUILD_TAG="latest"
else
BUILD_TAG="${GIT_TAG}"
fi
echo "BUILD_TAG=${BUILD_TAG}"
echo "GIT_TAG=${GIT_TAG}"
docker buildx create --name builder --use
OCI="index:org.opencontainers.image"
docker buildx build \
--platform=linux/amd64,linux/arm64 \
--tag "${REGISTRY}/${GIT_REPO}:${GIT_TAG}" \
--tag "${REGISTRY}/${GIT_REPO}:${BUILD_TAG}" \
--provenance false \
--output type=registry \
--annotation "${OCI}.url=https://github.com/${GIT_REPO}" \
--annotation "${OCI}.documentation=https://github.com/${GIT_REPO}" \
--annotation "${OCI}.source=https://github.com/${GIT_REPO}" \
--annotation "${OCI}.version=${GIT_TAG}" \
--annotation "${OCI}.revision=${GIT_COMMIT}" \
--annotation "${OCI}.vendor=Google LLC" \
--annotation "${OCI}.licenses=Apache-2.0" \
--annotation "${OCI}.description=This is a tool for generating Apigee bundles and shared flows" \
--push \
.
docker buildx rm builder