-
Notifications
You must be signed in to change notification settings - Fork 55
260 lines (230 loc) · 12 KB
/
docker-auto-build.yml
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
name: docker-auto-build
on:
release:
types: [created]
workflow_dispatch:
jobs:
build-and-push:
runs-on: ubuntu-latest
strategy:
matrix:
context: [
'clients, prepend-rucio, prepend-release, push-tagged, push-latest',
'server, prepend-rucio, prepend-release, push-tagged, push-latest, push-alma9-latest',
'daemons, prepend-rucio, prepend-release, push-tagged, push-latest, push-alma9-latest',
'dev, prepend-rucio, prepend-release, push-tagged, push-latest, push-alma9-latest',
'ui, prepend-rucio, prepend-release, push-tagged, push-latest',
'webui, prepend-rucio, prepend-release, push-tagged, push-latest',
'init, prepend-rucio, prepend-release, push-tagged, push-latest',
'probes, push-tagged, push-latest',
'fts, push-tagged, push-latest',
'fts-cron/Dockerfile_cpp, push-tagged, push-latest',
'fts-cron/Dockerfile_java, push-tagged, push-latest, custom-tag=java',
'ssh, push-tagged, push-latest',
'xrootd, push-tagged, push-latest',
'xrootd-noauth, push-tagged, push-latest',
'fs, rucio-clients:release-#TAG, prepend-rucio, push-tagged, push-latest',
'webdav, push-latest'
]
fail-fast: false
steps:
- name: Checkout the containers repository
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Fetch all branches
shell: bash
run: |
REPO_URL=$(echo 'https://github.com/${{ github.repository_owner }}/containers.git')
BRANCHES=$(git ls-remote --heads $REPO_URL | awk -F '\t' '{print $NF}' | cut -f3- -d'/')
git fetch origin $BRANCHES
- name: Get the release tag from GitHub
id: release_tag
run: echo ::set-output name=version::${GITHUB_REF/refs\/tags\//}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
- name: Generate Docker Image Names
id: release
shell: bash
run: |
# There are two types of releases managed by this script. If the git tag for the release
# is of the form `<semantic_version>`, then the release is a standard rucio release.
# If the git tag for the release is of the form `webui-<semantic_version>`, then the release is a WebUI release.
# Standard rucio releases are tagged with the rucio release version and DO NOT build the WebUI.
# WebUI releases are tagged with the WebUI release version and build the webui containers only.
#
# Below is the usage of the script to describe the tagging scheme used by the Docker Images
#
# Generates the image tags for the containers present in the containers repository
# The input is in CSV format:
# {sub_directory}, {parent_image}, {config_paramms}
# where,
# sub_directory: name of the sub_directory in rucio/containers reposistory that contains
# the Dockerfile. If the Dockerfile has a different name, then the full path to the Dockerfile must be specified.
# For example, fts-cron/Dockerfile_cpp is also a valid value.
# parent_image: OPTIONAL name of the parent image that is required to be available on Docker Hub before building this image.
# Parent images must begin with rucio- and can specify the #TAG placeholder to refer to the current tag being pushed.
# For example, rucio-clients:release-#TAG
# config_params: These are described in the CONFIG section and are used to generate
# the image tags that will be pushed to DockerHub for the given {sub_directory}
#
# CONFIG PARAMS
# -------------
# prepend-rucio: adds `rucio-` to image name
# prepend-release: adds `release-` to image name
# push-tagged: adds the $GIT_TAG to image name
# push-latest: if present, and the latest commit SHA on master branch
# matches the last commmit SHA of the current tag, adds release
# version to image name.
# force-latest: if present, the latest tag will be force pushed to Docker Hub
# latest-only: if present, only the latest tag will be pushed to Docker Hub
# custom-tag=value: If present, the value of the custom tag will be appended to the image tag.
# If push-latest is also present, then the custom tag will be appended to the latest tag as well.
# For example, custom-tag=java will append `java` to the image name.
#
# The following truth table is used to determine the Docker Hub tag
# The configuration parammeters are: preprend_release, push_tagged
# | prepend_release | push_tagged | image_tag |
# |----------------- |------------- |------------------- |
# | 0 | 0 | Check for latest tag|
# | 0 | 1 | :$GIT_TAG |
# | 1 | 0 | Config Error |
# | 1 | 1 | :release-$GIT_TAG |
CONTEXT=$(echo "${{ matrix.context }}")
CONTEXT_DIR=$(echo "${CONTEXT}" | cut -d, -f1 )
PARENT=$(echo "${CONTEXT}" | cut -d, -f2 | xargs)
GIT_TAG=${{ steps.release_tag.outputs.version }}
BASE_TAG="${{ github.repository_owner}}/"
PARENT_IMAGE_AVAILIBILITY_INTERVAL=60
MAX_ATTEMPTS=10
GIT_TAG_COMMIT_SHA=$(echo $(git rev-list -n 1 $GIT_TAG))
GIT_MASTER_LATEST_COMMIT_SHA=$(echo $(git ls-remote --heads origin | grep master | awk -F '\t' '{print $1}'))
# if git tag begins with webui-{semantic version}, then treat context as a webui release
if [[ $GIT_TAG =~ ^webui-([0-9]+.[0-9]+.[0-9]+)$ ]]; then
GIT_TAG="${BASH_REMATCH[1]}"
if [[ ! $CONTEXT_DIR =~ .*"webui".* ]]; then
echo "This is a Rucio WebUI release. Building of other containers is therefore skipped!"
exit 0
fi
else
if [[ $CONTEXT_DIR =~ .*"webui".* ]]; then
echo "This is a standard Rucio release. Building of WebUI container is therefore skipped!"
exit 0
fi
fi
if [[ -d $CONTEXT_DIR ]]; then
if [[ -f "${CONTEXT_DIR}/Dockerfile" ]]; then
FILE="Dockerfile"
else
echo "Dockerfile not found in $CONTEXT_DIR. Exiting!"
exit 1
fi
elif [[ -f $CONTEXT_DIR ]]; then
FILE="$(basename -- $CONTEXT_DIR)"
CONTEXT_DIR="$(dirname $CONTEXT_DIR)"
else
echo "$CONTEXT_DIR is not a file or directory. Exiting"
exit 1
fi
if [[ ${CONTEXT} =~ .*"prepend-rucio".* ]]; then
BASE_TAG+="rucio-$CONTEXT_DIR"
else
BASE_TAG+=$CONTEXT_DIR
fi
LATEST_TAG=''
IMAGE_TAG+=''
TAGS_TO_PUSH=''
if [[ ! ${CONTEXT} =~ .*"prepend-release".* && ! ${CONTEXT} =~ .*"push-tagged".* ]]; then
echo "Image with release tag will not be pushed! Will check if image with the latest tag can be pushed"
elif [[ ! ${CONTEXT} =~ .*"prepend-release".* && ${CONTEXT} =~ .*"push-tagged".* ]]; then
IMAGE_TAG+="$BASE_TAG:$GIT_TAG"
elif [[ ${CONTEXT} =~ .*"prepend-release".* && ! ${CONTEXT} =~ .*"push-tagged".* ]]; then
echo "Config Error!!"
else
IMAGE_TAG+="$BASE_TAG:release-$GIT_TAG"
fi
if [[ "${CONTEXT}" =~ .*"push-latest".* && $GIT_MASTER_LATEST_COMMIT_SHA == $GIT_TAG_COMMIT_SHA ]]; then
echo "There's a match between the SHA of latest commit on Master ($GIT_MASTER_LATEST_COMMIT_SHA) and \
latest commit on current tag $TAG ($GIT_TAG_COMMIT_SHA)"
echo "An image with latest tag will be pushed to Docker Hub"
LATEST_TAG="$BASE_TAG:latest"
elif [[ "${CONTEXT}" =~ .*"push-latest".* ]]; then
echo "Note: Image tagged latest will not be pushed as commit SHA's on master and current tag do not match!!"
echo "Latest commit on Master: $GIT_MASTER_LATEST_COMMIT_SHA"
echo "Latest commit on $GIT_TAG: $GIT_TAG_COMMIT_SHA"
fi
if [[ "${CONTEXT}" =~ .*"force-latest".* ]]; then
echo "Will force push the latest tag"
LATEST_TAG="$BASE_TAG:latest"
fi
if [[ $CONTEXT =~ custom-tag=([-a-zA-Z0-9]*) ]]; then
CUSTOM_TAG="${BASH_REMATCH[1]}"
if [[ -z $IMAGE_TAG ]]; then
IMAGE_TAG="${BASE_TAG}:${CUSTOM_TAG}"
else
IMAGE_TAG="${IMAGE_TAG}-${CUSTOM_TAG}"
fi
if [[ -z $LATEST_TAG ]]; then
LATEST_TAG="${BASE_TAG}:latest-${CUSTOM_TAG}"
else
LATEST_TAG="${LATEST_TAG}-${CUSTOM_TAG}"
fi
else
echo "No custom tag detected!"
fi
echo $CONTEXT
if [[ -z "$IMAGE_TAG" && -z "$LATEST_TAG" ]]; then
TAGS_TO_PUSH=''
elif [[ "$IMAGE_TAG" && -z "$LATEST_TAG" ]]; then
TAGS_TO_PUSH=$IMAGE_TAG
elif [[ -z "$IMAGE_TAG" && "$LATEST_TAG" ]]; then
TAGS_TO_PUSH=$LATEST_TAG
else
TAGS_TO_PUSH=$IMAGE_TAG,$LATEST_TAG
fi
# TODO: remove this hack hack once rucio tests are updated to use the default image.
if [[ "${CONTEXT}" =~ .*"push-alma9-latest".* && -n "$LATEST_TAG" ]]; then
TAGS_TO_PUSH="${LATEST_TAG}-alma9,${TAGS_TO_PUSH}"
fi
if [[ "${CONTEXT}" =~ .*"latest-only".* ]]; then
echo "Only the latest tag will be pushed"
TAGS_TO_PUSH="$BASE_TAG:latest"
fi
if [[ $PARENT == rucio-* ]]; then
if [[ ${PARENT} =~ .*"#TAG".* ]]; then
PARENT=${PARENT/\#TAG/$GIT_TAG}
fi
PARENT="${{ github.repository_owner }}/${PARENT}"
for i in $(seq 1 1 $MAX_ATTEMPTS)
do
echo "Attempt ${i}: Waiting for $PARENT to be available on Docker Hub"
docker pull $PARENT > /dev/null && echo "$PARENT found" && break || echo "Parent not found! Waiting $PARENT_IMAGE_AVAILIBILITY_INTERVAL seconds"
sleep $PARENT_IMAGE_AVAILIBILITY_INTERVAL
if [[ $i == $MAX_ATTEMPTS ]]; then
echo "$PARENT image is not available on Docker Hub. Dependent images will not be pushed."
exit 1
fi
done
else
echo "No parent image has been specified for $CONTEXT_DIR. Parent images are the second parameter in the csv build description and must begin with 'rucio-'."
fi
echo ::set-output name=git_tag::$GIT_TAG
echo ::set-output name=tags::$TAGS_TO_PUSH
echo ::set-output name=context_dir::$CONTEXT_DIR
echo ::set-output name=file::$FILE
echo "For tag: $GIT_TAG, the following images will be pushed: $TAGS_TO_PUSH"
- name: Build and push
if: steps.release.outputs.tags != ''
id: docker_build
uses: docker/build-push-action@v2
with:
context: ./${{ steps.release.outputs.context_dir }}
file: ./${{ steps.release.outputs.context_dir }}/${{ steps.release.outputs.file }}
push: true
tags: '${{ steps.release.outputs.tags }}'
build-args: TAG=${{ steps.release.outputs.git_tag }}