Browse Source

Merge branch '2.2.x'

Closes gh-20588
pull/20592/head
Andy Wilkinson 6 years ago
parent
commit
c3b04d7376
  1. 2
      ci/scripts/detect-ubuntu-image-updates.sh

2
ci/scripts/detect-ubuntu-image-updates.sh

@ -3,7 +3,7 @@ @@ -3,7 +3,7 @@
ISSUE_TITLE="Upgrade Ubuntu version in CI images"
ubuntu="bionic"
latest=$( curl -s "https://partner-images.canonical.com/core/$ubuntu/current/unpacked/build-info.txt" | awk '{split($0, parts, "="); print parts[2]}' )
latest=$( curl -s "https://hub.docker.com/v2/repositories/library/ubuntu/tags/?page_size=1&page=1&name=$ubuntu" | jq -c -r '.results[0].name' | awk '{split($0, parts, "-"); print parts[2]}' )
current=$( grep "ubuntu:$ubuntu" git-repo/ci/images/spring-boot-ci-image/Dockerfile | awk '{split($0, parts, "-"); print parts[2]}' )
if [[ $current = $latest ]]; then

Loading…
Cancel
Save