mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
Co-authored-by: Brian Seeders <brian.seeders@elastic.co>
This commit is contained in:
parent
c1878ccb27
commit
9eb4788d29
3 changed files with 11 additions and 3 deletions
|
@ -42,7 +42,11 @@ if is_pr; then
|
|||
export ELASTIC_APM_ACTIVE=false
|
||||
fi
|
||||
|
||||
export CHECKS_REPORTER_ACTIVE=true
|
||||
if [[ "${GITHUB_STEP_COMMIT_STATUS_ENABLED:-}" != "true" ]]; then
|
||||
export CHECKS_REPORTER_ACTIVE=true
|
||||
else
|
||||
export CHECKS_REPORTER_ACTIVE=false
|
||||
fi
|
||||
|
||||
# These can be removed once we're not supporting Jenkins and Buildkite at the same time
|
||||
# These are primarily used by github checks reporter and can be configured via /github_checks_api.json
|
||||
|
|
|
@ -5,7 +5,9 @@ set -euo pipefail
|
|||
BUILD_SUCCESSFUL=$(node "$(dirname "${0}")/build_status.js")
|
||||
export BUILD_SUCCESSFUL
|
||||
|
||||
"$(dirname "${0}")/commit_status_complete.sh"
|
||||
if [[ "${GITHUB_BUILD_COMMIT_STATUS_ENABLED:-}" != "true" ]]; then
|
||||
"$(dirname "${0}")/commit_status_complete.sh"
|
||||
fi
|
||||
|
||||
node "$(dirname "${0}")/ci_stats_complete.js"
|
||||
|
||||
|
|
|
@ -4,7 +4,9 @@ set -euo pipefail
|
|||
|
||||
source .buildkite/scripts/common/util.sh
|
||||
|
||||
"$(dirname "${0}")/commit_status_start.sh"
|
||||
if [[ "${GITHUB_BUILD_COMMIT_STATUS_ENABLED:-}" != "true" ]]; then
|
||||
"$(dirname "${0}")/commit_status_start.sh"
|
||||
fi
|
||||
|
||||
export CI_STATS_TOKEN="$(retry 5 5 vault read -field=api_token secret/kibana-issues/dev/kibana_ci_stats)"
|
||||
export CI_STATS_HOST="$(retry 5 5 vault read -field=api_host secret/kibana-issues/dev/kibana_ci_stats)"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue