blob: 4b2af74ff855484d03ebda2da896f904514067c0 [file] [log] [blame]
Carlos Sanchez0f763d42017-02-06 10:55:11 +01001#!/bin/bash -eu
2
3# Publish any versions of the docker image not yet pushed to jenkinsci/jenkins
Carlos Sanchez7fd3f212017-02-15 08:53:31 +01004# Arguments:
5# -n dry run, do not build or publish images
Carlos Sanchez0f763d42017-02-06 10:55:11 +01006
7set -o pipefail
8
9sort-versions() {
10 if [ "$(uname)" == 'Darwin' ]; then
11 gsort --version-sort
12 else
13 sort --version-sort
14 fi
15}
16
17# Try tagging with and without -f to support all versions of docker
18docker-tag() {
19 local from="jenkinsci/jenkins:$1"
20 local to="jenkinsci/jenkins:$2"
21 local out
22 if out=$(docker tag -f "$from" "$to" 2>&1); then
23 echo "$out"
24 else
25 docker tag "$from" "$to"
26 fi
27}
28
Carlos Sanchez3ffc4e42017-02-06 13:20:44 +010029get-variant() {
Carlos Sanchezd43f4292017-02-06 13:50:34 +010030 local branch
Carlos Sancheze43b7f92017-02-06 14:12:03 +010031 branch=$(git show-ref | grep $(git rev-list -n 1 HEAD) | tail -1 | rev | cut -d/ -f 1 | rev)
Carlos Sanchezd43f4292017-02-06 13:50:34 +010032 if [ -z "$branch" ]; then
33 >&2 echo "Could not get the current branch name for commit, not in a branch?: $(git rev-list -n 1 HEAD)"
34 return 1
35 fi
Carlos Sanchez3ffc4e42017-02-06 13:20:44 +010036 case "$branch" in
37 master) echo "" ;;
38 *) echo "-${branch}" ;;
39 esac
40}
41
Carlos Sanchez881d1432017-02-15 10:02:16 +010042login-token() {
43 # could use jq .token
44 curl -q -sSL https://auth.docker.io/token\?service\=registry.docker.io\&scope\=repository:jenkinsci/jenkins:pull | grep -o '"token":"[^"]*"' | cut -d':' -f 2 | xargs echo
45}
46
47is-published() {
Carlos Sanchezef7d4ef2017-03-02 11:12:08 +053048 get-manifest "$1" &> /dev/null
Carlos Sanchez881d1432017-02-15 10:02:16 +010049}
50
51get-manifest() {
52 local tag=$1
53 curl -q -fsSL -H "Accept: application/vnd.docker.distribution.manifest.v2+json" -H "Authorization: Bearer $TOKEN" "https://index.docker.io/v2/jenkinsci/jenkins/manifests/$tag"
54}
55
56get-digest() {
57 #get-manifest "$1" | jq .config.digest
58 get-manifest "$1" | grep -A 10 -o '"config".*' | grep digest | head -1 | cut -d':' -f 2,3 | xargs echo
59}
60
Carlos Sanchez0f763d42017-02-06 10:55:11 +010061get-latest-versions() {
62 curl -q -fsSL https://api.github.com/repos/jenkinsci/jenkins/tags?per_page=20 | grep '"name": "jenkins-' | egrep -o '[0-9]+(\.[0-9]+)+' | sort-versions | uniq
63}
64
65publish() {
66 local version=$1
Carlos Sanchez3ffc4e42017-02-06 13:20:44 +010067 local variant=$2
68 local tag="${version}${variant}"
Carlos Sanchez0f763d42017-02-06 10:55:11 +010069 local sha
70 local build_opts="--no-cache --pull"
71
Carlos Sanchez48c86a32017-03-07 17:56:42 +010072 local dir=war
73 # lts is in a different dir
74 if [[ "$version" =~ ^[0-9]+\.[0-9]+\.[0-9]+$ ]]; then
75 dir=war-stable
76 fi
77 sha=$(curl -q -fsSL "http://mirrors.jenkins.io/${dir}/${version}/jenkins.war.sha256" | cut -d' ' -f 1)
Carlos Sanchez0f763d42017-02-06 10:55:11 +010078
Carlos Sanchez7b8382f2017-02-06 12:00:52 +010079 docker build --build-arg "JENKINS_VERSION=$version" \
80 --build-arg "JENKINS_SHA=$sha" \
Carlos Sanchez3ffc4e42017-02-06 13:20:44 +010081 --tag "jenkinsci/jenkins:${tag}" ${build_opts} .
Carlos Sanchez0f763d42017-02-06 10:55:11 +010082
Carlos Sanchez3ffc4e42017-02-06 13:20:44 +010083 docker push "jenkinsci/jenkins:${tag}"
Carlos Sanchez4b0dcec2017-02-14 00:10:14 +010084}
85
Carlos Sanchez881d1432017-02-15 10:02:16 +010086tag-and-push() {
87 local source=$1
88 local target=$2
Carlos Sanchezdbdcfe42017-03-07 09:42:40 +010089 local digest_source
90 local digest_target
91
92 # if tag doesn't exist yet, ie. dry run
93 if ! digest_source=$(get-digest "${source}" 2>/dev/null); then
94 digest_source=""
95 fi
96 digest_target=$(get-digest "${target}")
Carlos Sanchezef7d4ef2017-03-02 11:12:08 +053097 if [ "$digest_source" == "$digest_target" ]; then
98 echo "Images ${source} [$digest_source] and ${target} [$digest_target] are already the same, not updating tags"
Carlos Sanchezb108a532017-02-06 14:30:56 +010099 else
Carlos Sanchez881d1432017-02-15 10:02:16 +0100100 echo "Creating tag ${target} pointing to ${source}"
Carlos Sanchez7fd3f212017-02-15 08:53:31 +0100101 if [ ! "$dry_run" = true ]; then
Carlos Sanchez881d1432017-02-15 10:02:16 +0100102 docker-tag "jenkinsci/jenkins:${source}" "jenkinsci/jenkins:${target}"
103 docker push "jenkinsci/jenkins:${source}"
Carlos Sanchez7fd3f212017-02-15 08:53:31 +0100104 fi
Carlos Sanchezb108a532017-02-06 14:30:56 +0100105 fi
Carlos Sanchez0f763d42017-02-06 10:55:11 +0100106}
107
Carlos Sanchez881d1432017-02-15 10:02:16 +0100108publish-latest() {
109 local version=$1
Carlos Sanchez4b0dcec2017-02-14 00:10:14 +0100110 local variant=$2
Carlos Sanchez881d1432017-02-15 10:02:16 +0100111
112 # push latest (for master) or the name of the branch (for other branches)
113 if [ -z "${variant}" ]; then
114 tag-and-push "${version}${variant}" "latest"
115 else
116 tag-and-push "${version}${variant}" "${variant#-}"
Carlos Sanchez7fd3f212017-02-15 08:53:31 +0100117 fi
Carlos Sanchez4b0dcec2017-02-14 00:10:14 +0100118}
119
Carlos Sanchez881d1432017-02-15 10:02:16 +0100120publish-lts() {
121 local version=$1
122 local variant=$2
123 tag-and-push "${version}" "lts${variant}"
124}
125
Carlos Sanchez7fd3f212017-02-15 08:53:31 +0100126dry_run=false
127if [ "-n" == "${1:-}" ]; then
128 dry_run=true
129fi
130if [ "$dry_run" = true ]; then
131 echo "Dry run, will not build or publish images"
132fi
Carlos Sanchez4b0dcec2017-02-14 00:10:14 +0100133
Carlos Sanchez881d1432017-02-15 10:02:16 +0100134TOKEN=$(login-token)
135
Carlos Sanchez3ffc4e42017-02-06 13:20:44 +0100136variant=$(get-variant)
137
Carlos Sanchez881d1432017-02-15 10:02:16 +0100138lts_version=""
139version=""
Carlos Sanchez0f763d42017-02-06 10:55:11 +0100140for version in $(get-latest-versions); do
Carlos Sanchez881d1432017-02-15 10:02:16 +0100141 if is-published "$version$variant"; then
142 echo "Tag is already published: $version$variant"
Carlos Sanchez0f763d42017-02-06 10:55:11 +0100143 else
Carlos Sanchez881d1432017-02-15 10:02:16 +0100144 echo "Publishing version: $version$variant"
Carlos Sanchez7fd3f212017-02-15 08:53:31 +0100145 if [ ! "$dry_run" = true ]; then
146 publish "$version" "$variant"
147 fi
Carlos Sanchez0f763d42017-02-06 10:55:11 +0100148 fi
Carlos Sanchez4b0dcec2017-02-14 00:10:14 +0100149
150 # Update lts tag
151 if [[ "$version" =~ ^[0-9]+\.[0-9]+\.[0-9]+$ ]]; then
Carlos Sanchez881d1432017-02-15 10:02:16 +0100152 lts_version="${version}"
Carlos Sanchez4b0dcec2017-02-14 00:10:14 +0100153 fi
Carlos Sanchez0f763d42017-02-06 10:55:11 +0100154done
155
Carlos Sanchez881d1432017-02-15 10:02:16 +0100156publish-latest "${version}" "${variant}"
157if [ -n "${lts_version}" ]; then
158 publish-lts "${lts_version}" "${variant}"
Carlos Sanchez4b0dcec2017-02-14 00:10:14 +0100159fi