94 lines
3.0 KiB
Bash
Executable File
94 lines
3.0 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
# Copyright 2016 The Kubernetes Authors All rights reserved.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
|
|
# This script creates several GitHub statuses using the GitHub API: https://developer.github.com/v3/repos/statuses/
|
|
# This is intended to run before the tests start, so the icons show up on the GitHub PR and block submit until
|
|
# the tests finish.
|
|
|
|
# The script expects the following env variables:
|
|
# ghprbPullId: The pull request ID, injected from the ghpbr plugin.
|
|
# ghprbActualCommit: The commit hash, injected from the ghpbr plugin.
|
|
# access_token: The GitHub API access token. Injected by the Jenkins credential provider.
|
|
|
|
set -eux -o pipefail
|
|
|
|
jobs=(
|
|
# 'Hyperkit_macOS'
|
|
'Hyper-V_Windows'
|
|
'KVM_Linux'
|
|
'KVM_Linux_containerd'
|
|
'KVM_Linux_crio'
|
|
'none_Linux'
|
|
'Docker_Linux'
|
|
'Docker_Linux_docker_arm64'
|
|
'Docker_Linux_containerd_arm64'
|
|
'Docker_Linux_crio_arm64'
|
|
'Docker_Linux_containerd'
|
|
'Docker_Linux_crio'
|
|
# 'Docker_macOS'
|
|
'Docker_Windows'
|
|
'Docker_Cloud_Shell'
|
|
# 'QEMU_macOS'
|
|
)
|
|
|
|
STARTED_LIST_REMOTE="gs://minikube-builds/logs/${ghprbPullId}/${BUILD_NUMBER}/started_environments.txt"
|
|
printf "%s\n" "${jobs[@]}" | gsutil cp - "${STARTED_LIST_REMOTE}"
|
|
|
|
if [ "${ghprbPullId}" == "master" ]; then
|
|
echo "not setting github status for continuous builds"
|
|
exit 0
|
|
fi
|
|
|
|
# retry_github_status provides reliable github status updates
|
|
function retry_github_status() {
|
|
local commit=$1
|
|
local context=$2
|
|
local state=$3
|
|
local token=$4
|
|
local target=$5
|
|
|
|
# Retry in case we hit our GitHub API quota or fail other ways.
|
|
local attempt=0
|
|
local timeout=2
|
|
local code=-1
|
|
|
|
while [[ "${attempt}" -lt 8 ]]; do
|
|
local out=$(mktemp)
|
|
code=$(curl -o "${out}" -s --write-out "%{http_code}" -L -u minikube-bot:$token \
|
|
"https://api.github.com/repos/kubernetes/minikube/statuses/${commit}" \
|
|
-H "Content-Type: application/json" \
|
|
-X POST \
|
|
-d "{\"state\": \"${state}\", \"description\": \"Jenkins\", \"target_url\": \"${target}\", \"context\": \"${context}\"}" || echo 999)
|
|
|
|
# 2xx HTTP codes
|
|
if [[ "${code}" =~ ^2 ]]; then
|
|
break
|
|
fi
|
|
|
|
cat "${out}" && rm -f "${out}"
|
|
echo "HTTP code ${code}! Retrying in ${timeout} .."
|
|
sleep "${timeout}"
|
|
attempt=$(( attempt + 1 ))
|
|
timeout=$(( timeout * 5 ))
|
|
done
|
|
}
|
|
|
|
for j in ${jobs[@]}; do
|
|
retry_github_status "${ghprbActualCommit}" "${j}" "pending" "${access_token}" \
|
|
"https://storage.googleapis.com/minikube-builds/logs/${ghprbPullId}/${BUILD_NUMBER}/${j}.pending"
|
|
done
|