2016-11-02 03:14:53 +00:00
|
|
|
#!/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.
|
|
|
|
|
|
|
|
|
2019-08-06 23:33:04 +00:00
|
|
|
# This script runs the integration tests on a Linux machine for the VirtualBox Driver
|
2016-11-02 03:14:53 +00:00
|
|
|
|
2016-12-24 04:11:05 +00:00
|
|
|
# The script expects the following env variables:
|
2016-11-02 03:14:53 +00:00
|
|
|
# MINIKUBE_LOCATION: GIT_COMMIT from upstream build.
|
|
|
|
# COMMIT: Actual commit ID from upstream build
|
|
|
|
# EXTRA_BUILD_ARGS (optional): Extra args to be passed into the minikube integrations tests
|
2022-04-25 07:54:40 +00:00
|
|
|
# access_token: The GitHub API access token. Injected by the Jenkins credential provider.
|
2016-11-02 03:14:53 +00:00
|
|
|
|
|
|
|
set -e
|
|
|
|
|
2021-05-06 23:23:41 +00:00
|
|
|
OS="linux"
|
|
|
|
ARCH="amd64"
|
2021-05-06 19:43:16 +00:00
|
|
|
DRIVER="virtualbox"
|
2019-08-06 23:33:04 +00:00
|
|
|
JOB_NAME="VirtualBox_Linux"
|
2020-12-15 17:22:08 +00:00
|
|
|
EXTRA_TEST_ARGS=""
|
2016-11-02 03:14:53 +00:00
|
|
|
|
2021-05-06 20:05:02 +00:00
|
|
|
source ./common.sh 2h
|