blob: 24a0d35c1c299e5fae20acb12dd023a5773d6d95 [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
72 sha=$(curl -q -fsSL "http://repo.jenkins-ci.org/simple/releases/org/jenkins-ci/main/jenkins-war/${version}/jenkins-war-${version}.war.sha1")
73
Carlos Sanchez7b8382f2017-02-06 12:00:52 +010074 docker build --build-arg "JENKINS_VERSION=$version" \
75 --build-arg "JENKINS_SHA=$sha" \
Carlos Sanchez3ffc4e42017-02-06 13:20:44 +010076 --tag "jenkinsci/jenkins:${tag}" ${build_opts} .
Carlos Sanchez0f763d42017-02-06 10:55:11 +010077
Carlos Sanchez3ffc4e42017-02-06 13:20:44 +010078 docker push "jenkinsci/jenkins:${tag}"
Carlos Sanchez4b0dcec2017-02-14 00:10:14 +010079}
80
Carlos Sanchez881d1432017-02-15 10:02:16 +010081tag-and-push() {
82 local source=$1
83 local target=$2
Carlos Sanchezdbdcfe42017-03-07 09:42:40 +010084 local digest_source
85 local digest_target
86
87 # if tag doesn't exist yet, ie. dry run
88 if ! digest_source=$(get-digest "${source}" 2>/dev/null); then
89 digest_source=""
90 fi
91 digest_target=$(get-digest "${target}")
Carlos Sanchezef7d4ef2017-03-02 11:12:08 +053092 if [ "$digest_source" == "$digest_target" ]; then
93 echo "Images ${source} [$digest_source] and ${target} [$digest_target] are already the same, not updating tags"
Carlos Sanchezb108a532017-02-06 14:30:56 +010094 else
Carlos Sanchez881d1432017-02-15 10:02:16 +010095 echo "Creating tag ${target} pointing to ${source}"
Carlos Sanchez7fd3f212017-02-15 08:53:31 +010096 if [ ! "$dry_run" = true ]; then
Carlos Sanchez881d1432017-02-15 10:02:16 +010097 docker-tag "jenkinsci/jenkins:${source}" "jenkinsci/jenkins:${target}"
98 docker push "jenkinsci/jenkins:${source}"
Carlos Sanchez7fd3f212017-02-15 08:53:31 +010099 fi
Carlos Sanchezb108a532017-02-06 14:30:56 +0100100 fi
Carlos Sanchez0f763d42017-02-06 10:55:11 +0100101}
102
Carlos Sanchez881d1432017-02-15 10:02:16 +0100103publish-latest() {
104 local version=$1
Carlos Sanchez4b0dcec2017-02-14 00:10:14 +0100105 local variant=$2
Carlos Sanchez881d1432017-02-15 10:02:16 +0100106
107 # push latest (for master) or the name of the branch (for other branches)
108 if [ -z "${variant}" ]; then
109 tag-and-push "${version}${variant}" "latest"
110 else
111 tag-and-push "${version}${variant}" "${variant#-}"
Carlos Sanchez7fd3f212017-02-15 08:53:31 +0100112 fi
Carlos Sanchez4b0dcec2017-02-14 00:10:14 +0100113}
114
Carlos Sanchez881d1432017-02-15 10:02:16 +0100115publish-lts() {
116 local version=$1
117 local variant=$2
118 tag-and-push "${version}" "lts${variant}"
119}
120
Carlos Sanchez7fd3f212017-02-15 08:53:31 +0100121dry_run=false
122if [ "-n" == "${1:-}" ]; then
123 dry_run=true
124fi
125if [ "$dry_run" = true ]; then
126 echo "Dry run, will not build or publish images"
127fi
Carlos Sanchez4b0dcec2017-02-14 00:10:14 +0100128
Carlos Sanchez881d1432017-02-15 10:02:16 +0100129TOKEN=$(login-token)
130
Carlos Sanchez3ffc4e42017-02-06 13:20:44 +0100131variant=$(get-variant)
132
Carlos Sanchez881d1432017-02-15 10:02:16 +0100133lts_version=""
134version=""
Carlos Sanchez0f763d42017-02-06 10:55:11 +0100135for version in $(get-latest-versions); do
Carlos Sanchez881d1432017-02-15 10:02:16 +0100136 if is-published "$version$variant"; then
137 echo "Tag is already published: $version$variant"
Carlos Sanchez0f763d42017-02-06 10:55:11 +0100138 else
Carlos Sanchez881d1432017-02-15 10:02:16 +0100139 echo "Publishing version: $version$variant"
Carlos Sanchez7fd3f212017-02-15 08:53:31 +0100140 if [ ! "$dry_run" = true ]; then
141 publish "$version" "$variant"
142 fi
Carlos Sanchez0f763d42017-02-06 10:55:11 +0100143 fi
Carlos Sanchez4b0dcec2017-02-14 00:10:14 +0100144
145 # Update lts tag
146 if [[ "$version" =~ ^[0-9]+\.[0-9]+\.[0-9]+$ ]]; then
Carlos Sanchez881d1432017-02-15 10:02:16 +0100147 lts_version="${version}"
Carlos Sanchez4b0dcec2017-02-14 00:10:14 +0100148 fi
Carlos Sanchez0f763d42017-02-06 10:55:11 +0100149done
150
Carlos Sanchez881d1432017-02-15 10:02:16 +0100151publish-latest "${version}" "${variant}"
152if [ -n "${lts_version}" ]; then
153 publish-lts "${lts_version}" "${variant}"
Carlos Sanchez4b0dcec2017-02-14 00:10:14 +0100154fi