Merge branch '2.0.x'
This commit is contained in:
@@ -152,6 +152,7 @@ jobs:
|
||||
BUILD_PIPELINE_NAME: ((pipeline-name))
|
||||
BUILD_JOB_NAME: build
|
||||
CONCOURSE_URL: ((concourse-url))
|
||||
ACCESS_TOKEN: ((github-access-token))
|
||||
- put: email-notification
|
||||
params:
|
||||
subject: email-details/subject
|
||||
@@ -165,6 +166,7 @@ jobs:
|
||||
BUILD_PIPELINE_NAME: ((pipeline-name))
|
||||
BUILD_JOB_NAME: build
|
||||
CONCOURSE_URL: ((concourse-url))
|
||||
ACCESS_TOKEN: ((github-access-token))
|
||||
- put: repo-status-build
|
||||
params: { state: "success", commit: "git-repo" }
|
||||
- put: email-notification
|
||||
@@ -268,6 +270,7 @@ jobs:
|
||||
BUILD_PIPELINE_NAME: ((pipeline-name))
|
||||
BUILD_JOB_NAME: jdk9-build
|
||||
CONCOURSE_URL: ((concourse-url))
|
||||
ACCESS_TOKEN: ((github-access-token))
|
||||
- put: email-notification
|
||||
params:
|
||||
subject: email-details/subject
|
||||
@@ -281,6 +284,7 @@ jobs:
|
||||
BUILD_PIPELINE_NAME: ((pipeline-name))
|
||||
BUILD_JOB_NAME: jdk9-build
|
||||
CONCOURSE_URL: ((concourse-url))
|
||||
ACCESS_TOKEN: ((github-access-token))
|
||||
- put: repo-status-jdk9-build
|
||||
params: { state: "success", commit: "git-repo" }
|
||||
- put: email-notification
|
||||
@@ -327,6 +331,7 @@ jobs:
|
||||
BUILD_PIPELINE_NAME: ((pipeline-name))
|
||||
BUILD_JOB_NAME: jdk10-build
|
||||
CONCOURSE_URL: ((concourse-url))
|
||||
ACCESS_TOKEN: ((github-access-token))
|
||||
- put: email-notification
|
||||
params:
|
||||
subject: email-details/subject
|
||||
@@ -340,6 +345,7 @@ jobs:
|
||||
BUILD_PIPELINE_NAME: ((pipeline-name))
|
||||
BUILD_JOB_NAME: jdk10-build
|
||||
CONCOURSE_URL: ((concourse-url))
|
||||
ACCESS_TOKEN: ((github-access-token))
|
||||
- put: repo-status-jdk10-build
|
||||
params: { state: "success", commit: "git-repo" }
|
||||
- put: email-notification
|
||||
|
||||
@@ -4,7 +4,7 @@ set -e
|
||||
pushd git-repo > /dev/null
|
||||
PREV_SHA=$( git rev-parse HEAD^1 )
|
||||
popd > /dev/null
|
||||
PREV_STATUSES=$( curl https://api.github.com/repos/spring-projects/spring-boot/commits/$PREV_SHA/statuses )
|
||||
PREV_STATUSES=$( curl https://api.github.com/repos/spring-projects/spring-boot/commits/$PREV_SHA/statuses -H "Authorization: token ${ACCESS_TOKEN}" )
|
||||
PREV_STATES=$( echo $PREV_STATUSES | jq -r --arg BUILD_JOB_NAME "$BUILD_JOB_NAME" '.[] | select(.context == $BUILD_JOB_NAME) | .state' )
|
||||
WAS_PREV_SUCCESSFUL=$( echo "$PREV_STATES" | grep 'success' || true )
|
||||
|
||||
|
||||
Reference in New Issue
Block a user