Commit 33c1a050 authored by Phillip Webb's avatar Phillip Webb

Merge branch '2.4.x'

parents f3719b99 909f7170
...@@ -629,7 +629,7 @@ jobs: ...@@ -629,7 +629,7 @@ jobs:
plan: plan:
- get: ci-image - get: ci-image
- get: git-repo - get: git-repo
resource: homebrew-tap-repo - get: homebrew-tap-repo
- get: artifactory-repo - get: artifactory-repo
passed: [sync-to-maven-central] passed: [sync-to-maven-central]
params: params:
...@@ -640,10 +640,9 @@ jobs: ...@@ -640,10 +640,9 @@ jobs:
file: git-repo/ci/tasks/update-homebrew-tap.yml file: git-repo/ci/tasks/update-homebrew-tap.yml
params: params:
LATEST_GA: false LATEST_GA: false
- put: git-repo - put: homebrew-tap-repo
resource: homebrew-tap-repo
params: params:
repository: updated-repo repository: updated-homebrew-tap-repo
groups: groups:
- name: "builds" - name: "builds"
jobs: ["build", "jdk11-build", "jdk15-build", "windows-build"] jobs: ["build", "jdk11-build", "jdk15-build", "windows-build"]
......
...@@ -3,12 +3,11 @@ set -e ...@@ -3,12 +3,11 @@ set -e
version=$( cat artifactory-repo/build-info.json | jq -r '.buildInfo.modules[0].id' | sed 's/.*:.*:\(.*\)/\1/' ) version=$( cat artifactory-repo/build-info.json | jq -r '.buildInfo.modules[0].id' | sed 's/.*:.*:\(.*\)/\1/' )
git clone git-repo updated-repo > /dev/null git clone homebrew-tap-repo updated-homebrew-tap-repo > /dev/null
if [[ $LATEST_GA = true ]]; then if [[ $LATEST_GA = true ]]; then
pushd updated-repo > /dev/null pushd updated-homebrew-tap-repo > /dev/null
cd homebrew-tap curl https://repo.spring.io/libs-release-local/org/springframework/boot/spring-boot-cli/${version}/spring-boot-cli-${version}-homebrew.rb --output spring-boot-cli-${version}-homebrew.rb
wget https://repo.spring.io/libs-release-local/org/springframework/boot/spring-boot-cli/${version}/spring-boot-cli-${version}-homebrew.rb
rm spring-boot.rb rm spring-boot.rb
mv spring-boot-cli-*.rb spring-boot.rb mv spring-boot-cli-*.rb spring-boot.rb
git config user.name "Spring Buildmaster" > /dev/null git config user.name "Spring Buildmaster" > /dev/null
...@@ -17,4 +16,4 @@ pushd updated-repo > /dev/null ...@@ -17,4 +16,4 @@ pushd updated-repo > /dev/null
git commit -m "Upgrade to Spring Boot ${version}" > /dev/null git commit -m "Upgrade to Spring Boot ${version}" > /dev/null
echo "DONE" echo "DONE"
popd > /dev/null popd > /dev/null
fi fi
\ No newline at end of file
...@@ -2,9 +2,10 @@ ...@@ -2,9 +2,10 @@
platform: linux platform: linux
inputs: inputs:
- name: git-repo - name: git-repo
- name: homebrew-tap-repo
- name: artifactory-repo - name: artifactory-repo
outputs: outputs:
- name: updated-repo - name: updated-homebrew-tap-repo
params: params:
LATEST_GA: LATEST_GA:
run: run:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment