1#!/bin/bash 2# Copyright 2020 Google LLC 3# 4# Licensed under the Apache License, Version 2.0 (the "License"); 5# you may not use this file except in compliance with the License. 6# You may obtain a copy of the License at 7# 8# http://www.apache.org/licenses/LICENSE-2.0 9# 10# Unless required by applicable law or agreed to in writing, software 11# distributed under the License is distributed on an "AS IS" BASIS, 12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13# See the License for the specific language governing permissions and 14# limitations under the License. 15################################################################################ 16 17set -euo pipefail 18 19IS_KOKORO="false" 20if [[ -n "${KOKORO_ARTIFACTS_DIR:-}" ]]; then 21 IS_KOKORO="true" 22fi 23readonly IS_KOKORO 24 25if [[ "${IS_KOKORO}" == "true" ]]; then 26 cd "$(echo "${KOKORO_ARTIFACTS_DIR}"/git*/tink)" 27fi 28 29./kokoro/testutils/copy_credentials.sh "go/testdata" "all" 30# Sourcing required to update callers environment. 31source ./kokoro/testutils/install_go.sh 32echo "Using go binary from $(which go): $(go version)" 33./kokoro/testutils/check_go_generated_files_up_to_date.sh go 34 35MANUAL_TARGETS=() 36# Run manual tests which rely on key material injected into the Kokoro 37# environement. 38if [[ "${IS_KOKORO}" == "true" ]]; then 39 MANUAL_TARGETS+=( 40 "//integration/gcpkms:gcpkms_test" 41 "//integration/awskms:awskms_test" 42 ) 43fi 44readonly MANUAL_TARGETS 45 46./kokoro/testutils/run_bazel_tests.sh \ 47 -t --test_arg=--test.v go "${MANUAL_TARGETS[@]}" 48