Upgrade CI to concourse-release-scripts 0.3.4
This commit is contained in:
parent
c056b81753
commit
5b1719cd77
|
|
@ -14,8 +14,6 @@ rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
curl https://raw.githubusercontent.com/spring-io/concourse-java-scripts/v0.0.4/concourse-java.sh > /opt/concourse-java.sh
|
curl https://raw.githubusercontent.com/spring-io/concourse-java-scripts/v0.0.4/concourse-java.sh > /opt/concourse-java.sh
|
||||||
|
|
||||||
curl --output /opt/concourse-release-scripts.jar https://repo.spring.io/release/io/spring/concourse/releasescripts/concourse-release-scripts/0.3.2/concourse-release-scripts-0.3.2.jar
|
|
||||||
|
|
||||||
###########################################################
|
###########################################################
|
||||||
# JAVA
|
# JAVA
|
||||||
###########################################################
|
###########################################################
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
github-repo: "https://github.com/spring-projects/spring-framework.git"
|
github-repo: "https://github.com/spring-projects/spring-framework.git"
|
||||||
github-repo-name: "spring-projects/spring-framework"
|
github-repo-name: "spring-projects/spring-framework"
|
||||||
|
sonatype-staging-profile: "org.springframework"
|
||||||
docker-hub-organization: "springci"
|
docker-hub-organization: "springci"
|
||||||
artifactory-server: "https://repo.spring.io"
|
artifactory-server: "https://repo.spring.io"
|
||||||
branch: "5.3.x"
|
branch: "5.3.x"
|
||||||
|
|
|
||||||
|
|
@ -12,7 +12,7 @@ anchors:
|
||||||
SONATYPE_USERNAME: ((sonatype-username))
|
SONATYPE_USERNAME: ((sonatype-username))
|
||||||
SONATYPE_PASSWORD: ((sonatype-password))
|
SONATYPE_PASSWORD: ((sonatype-password))
|
||||||
SONATYPE_URL: ((sonatype-url))
|
SONATYPE_URL: ((sonatype-url))
|
||||||
SONATYPE_STAGING_PROFILE_ID: ((sonatype-staging-profile-id))
|
SONATYPE_STAGING_PROFILE: ((sonatype-staging-profile))
|
||||||
artifactory-task-params: &artifactory-task-params
|
artifactory-task-params: &artifactory-task-params
|
||||||
ARTIFACTORY_SERVER: ((artifactory-server))
|
ARTIFACTORY_SERVER: ((artifactory-server))
|
||||||
ARTIFACTORY_USERNAME: ((artifactory-username))
|
ARTIFACTORY_USERNAME: ((artifactory-username))
|
||||||
|
|
@ -345,7 +345,6 @@ jobs:
|
||||||
download_artifacts: false
|
download_artifacts: false
|
||||||
save_build_info: true
|
save_build_info: true
|
||||||
- task: promote
|
- task: promote
|
||||||
image: ci-image
|
|
||||||
file: git-repo/ci/tasks/promote-version.yml
|
file: git-repo/ci/tasks/promote-version.yml
|
||||||
params:
|
params:
|
||||||
RELEASE_TYPE: M
|
RELEASE_TYPE: M
|
||||||
|
|
@ -390,7 +389,6 @@ jobs:
|
||||||
download_artifacts: false
|
download_artifacts: false
|
||||||
save_build_info: true
|
save_build_info: true
|
||||||
- task: promote
|
- task: promote
|
||||||
image: ci-image
|
|
||||||
file: git-repo/ci/tasks/promote-version.yml
|
file: git-repo/ci/tasks/promote-version.yml
|
||||||
params:
|
params:
|
||||||
RELEASE_TYPE: RC
|
RELEASE_TYPE: RC
|
||||||
|
|
@ -435,7 +433,6 @@ jobs:
|
||||||
download_artifacts: true
|
download_artifacts: true
|
||||||
save_build_info: true
|
save_build_info: true
|
||||||
- task: promote
|
- task: promote
|
||||||
image: ci-image
|
|
||||||
file: git-repo/ci/tasks/promote-version.yml
|
file: git-repo/ci/tasks/promote-version.yml
|
||||||
params:
|
params:
|
||||||
RELEASE_TYPE: RELEASE
|
RELEASE_TYPE: RELEASE
|
||||||
|
|
|
||||||
|
|
@ -6,11 +6,11 @@ CONFIG_DIR=git-repo/ci/config
|
||||||
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/' )
|
||||||
export BUILD_INFO_LOCATION=$(pwd)/artifactory-repo/build-info.json
|
export BUILD_INFO_LOCATION=$(pwd)/artifactory-repo/build-info.json
|
||||||
|
|
||||||
java -jar /opt/concourse-release-scripts.jar \
|
java -jar /concourse-release-scripts.jar \
|
||||||
--spring.config.location=${CONFIG_DIR}/release-scripts.yml \
|
--spring.config.location=${CONFIG_DIR}/release-scripts.yml \
|
||||||
publishToCentral $RELEASE_TYPE $BUILD_INFO_LOCATION artifactory-repo || { exit 1; }
|
publishToCentral $RELEASE_TYPE $BUILD_INFO_LOCATION artifactory-repo || { exit 1; }
|
||||||
|
|
||||||
java -jar /opt/concourse-release-scripts.jar \
|
java -jar /concourse-release-scripts.jar \
|
||||||
--spring.config.location=${CONFIG_DIR}/release-scripts.yml \
|
--spring.config.location=${CONFIG_DIR}/release-scripts.yml \
|
||||||
promote $RELEASE_TYPE $BUILD_INFO_LOCATION || { exit 1; }
|
promote $RELEASE_TYPE $BUILD_INFO_LOCATION || { exit 1; }
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,10 @@
|
||||||
---
|
---
|
||||||
platform: linux
|
platform: linux
|
||||||
|
image_resource:
|
||||||
|
type: registry-image
|
||||||
|
source:
|
||||||
|
repository: springio/concourse-release-scripts
|
||||||
|
tag: '0.3.4'
|
||||||
inputs:
|
inputs:
|
||||||
- name: git-repo
|
- name: git-repo
|
||||||
- name: artifactory-repo
|
- name: artifactory-repo
|
||||||
|
|
@ -13,6 +18,6 @@ params:
|
||||||
SONATYPE_USER:
|
SONATYPE_USER:
|
||||||
SONATYPE_PASSWORD:
|
SONATYPE_PASSWORD:
|
||||||
SONATYPE_URL:
|
SONATYPE_URL:
|
||||||
SONATYPE_STAGING_PROFILE_ID:
|
SONATYPE_STAGING_PROFILE:
|
||||||
run:
|
run:
|
||||||
path: git-repo/ci/scripts/promote-version.sh
|
path: git-repo/ci/scripts/promote-version.sh
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue