minikube/hack/jenkins/prbot.sh

55 lines
1.6 KiB
Bash
Raw Normal View History

2021-04-07 00:07:43 +00:00
#!/bin/bash
2021-04-07 00:28:22 +00:00
# Copyright 2021 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.
2021-04-07 00:07:43 +00:00
set -x -o pipefail
# Only run this on PRs
if [[ "${MINIKUBE_LOCATION}" == "master" ]]; then
2021-09-22 23:01:31 +00:00
exit 0
2021-04-07 00:07:43 +00:00
fi
2021-09-22 23:01:31 +00:00
# Make sure docker is installed and configured
2021-04-07 21:12:59 +00:00
#./installers/check_install_docker.sh
2021-04-07 00:07:43 +00:00
2021-09-22 23:01:31 +00:00
# Make sure gh is installed and configured
./installers/check_install_gh.sh
2021-04-07 00:07:43 +00:00
2021-09-22 23:01:31 +00:00
# Make sure go is installed and configured
./installers/check_install_golang.sh "/usr/local" || true
2021-04-07 00:07:43 +00:00
2021-09-22 23:01:31 +00:00
# Grab latest code
git clone https://github.com/kubernetes/minikube.git
cd minikube
2021-04-07 00:07:43 +00:00
2021-09-22 23:01:31 +00:00
# Grab the PR's version of mkcmp, so it's easier to test changes
gsutil cp "gs://minikube-builds/${MINIKUBE_LOCATION}/mkcmp" .
2021-09-23 00:29:07 +00:00
chmod +x ./mkcmp
2021-09-22 23:01:31 +00:00
# Build minikube binary
make out/minikube
2021-04-07 00:07:43 +00:00
2021-04-07 22:28:12 +00:00
# Make sure there aren't any old minikube clusters laying around
out/minikube delete --all
2021-09-22 23:01:31 +00:00
# Run mkcmp
./mkcmp out/minikube pr://${MINIKUBE_LOCATION} | tee mkcmp.log
2021-04-07 00:07:43 +00:00
if [ $? -gt 0 ]; then
# Comment that mkcmp failed
gh pr comment ${MINIKUBE_LOCATION} --body "timing minikube failed, please try again"
exit 1
fi
output=$(cat mkcmp.log)
2021-04-07 16:04:47 +00:00
gh pr comment ${MINIKUBE_LOCATION} --body "${output}"