Skip to content
Snippets Groups Projects
Unverified Commit 4d328ee0 authored by Harmen Stoppels's avatar Harmen Stoppels Committed by GitHub
Browse files

Set the status on the commit from the PR (#1099)

This is copied from DLA Future. It should set the CI status on the commit from the PR instead of just on the Bors commit. This way the gitlab CI status also appears in the checks section below the PR.
parent 5933b6f1
No related branches found
No related tags found
No related merge requests found
......@@ -38,6 +38,14 @@ build codecov:
DEPLOY_DOCKERFILE: ci/codecov/deploy.Dockerfile
DEPLOY_IMAGE: $CI_REGISTRY_IMAGE/codecov/deploy:$CI_COMMIT_SHA
notify_github_start:
stage: build
allow_failure: true
only: ['master', 'staging', 'trying']
tags: ['kubernetes']
image: stabbles/git-curl
script: ./ci/set_github_status.sh pending
# Some variables used for running on daint
variables:
......@@ -158,4 +166,20 @@ deallocate codecov:
stage: cleanup
extends: .daint_dealloc
variables:
ALLOCATION_NAME: arbor-ci-codecov-$CI_PIPELINE_ID
\ No newline at end of file
ALLOCATION_NAME: arbor-ci-codecov-$CI_PIPELINE_ID
notify_github_success:
stage: cleanup
when: on_success
only: ['master', 'staging', 'trying']
tags: ['kubernetes']
image: stabbles/git-curl
script: ./ci/set_github_status.sh success
notify_github_failure:
stage: cleanup
when: on_failure
only: ['master', 'staging', 'trying']
tags: ['kubernetes']
image: stabbles/git-curl
script: ./ci/set_github_status.sh failure
#!/bin/bash
function submit() {
local commit_status=${1}
local commit_sha=${2}
curl --verbose \
--url "https://api.github.com/repos/arbor-sim/arbor/statuses/${commit_sha}" \
--header 'Content-Type: application/json' \
--header "authorization: Bearer ${GITHUB_TOKEN}" \
--data "{ \"state\": \"${commit_status}\", \"target_url\": \"${CI_PIPELINE_URL}\", \"description\": \"All Gitlab pipelines\", \"context\": \"ci/gitlab/full-pipeline\" }"
}
commit_status=${1}
# always submit for the current commit
submit "${commit_status}" "$CI_COMMIT_SHA"
# For Bors: get the latest commit before the merge to set the status.
if [[ $CI_COMMIT_REF_NAME =~ ^(trying|staging)$ ]]; then
parent_sha=`git rev-parse --verify -q "$CI_COMMIT_SHA"^2`
if [[ $? -eq 0 ]]; then
submit "${commit_status}" "${parent_sha}"
fi
fi
exit 0
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