From c615dad881418745e0111685fb2b0cf5d564557e Mon Sep 17 00:00:00 2001 From: Dan Lorenc Date: Tue, 13 Sep 2016 12:57:44 -0700 Subject: [PATCH] Add the main Jenkins build script to git. --- hack/jenkins/cross_build.sh | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 hack/jenkins/cross_build.sh diff --git a/hack/jenkins/cross_build.sh b/hack/jenkins/cross_build.sh new file mode 100644 index 000000000..e875583b3 --- /dev/null +++ b/hack/jenkins/cross_build.sh @@ -0,0 +1,34 @@ +#!/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. + +# The script expects the following env variabls: +# ghprbPullId: The pull request ID, injected from the ghpbr plugin. +# ghprbActualCommit: The commit hash, injected from the ghpbr plugin. + +gsutil cp gs://minikube-builds/logs/index.html gs://minikube-builds/logs/${ghprbPullId}/index.html + +# Build all platforms (Windows, Linux, OSX) +make cross + +# Build the e2e test target for Darwin and Linux. We don't run tests on Windows yet. +# We build these on Linux, but run the tests on different platforms. +# This makes it easier to provision slaves, since they don't need to have a go toolchain.' +GOPATH=$(pwd)/_gopath GOOS=darwin GOARCH=amd64 go test -c k8s.io/minikube/test/integration --tags=integration -o out/e2e-darwin-amd64 +GOPATH=$(pwd)/_gopath GOOS=linux GOARCH=amd64 go test -c k8s.io/minikube/test/integration --tags=integration -o out/e2e-linux-amd64 +cp -r test/integration/testdata out/ + +# Upload everything we built to Cloud Storage. +gsutil -m cp -r out/* gs://minikube-builds/${ghprbPullId}/ -- GitLab