xref: /aosp_15_r20/external/tink/kokoro/macos_external/java_src/run_tests.sh (revision e7b1675dde1b92d52ec075b0a92829627f2c52a5)
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
19export XCODE_VERSION="14.1"
20export DEVELOPER_DIR="/Applications/Xcode.app/Contents/Developer"
21export ANDROID_HOME="/usr/local/share/android-sdk"
22export COURSIER_OPTS="-Djava.net.preferIPv6Addresses=true"
23
24if [[ -n "${KOKORO_ROOT:-}" ]] ; then
25  cd "$(echo "${KOKORO_ARTIFACTS_DIR}"/git*/tink)"
26  export JAVA_HOME=$(/usr/libexec/java_home -v "1.8.0_292")
27fi
28
29./kokoro/testutils/update_android_sdk.sh
30./kokoro/testutils/run_bazel_tests.sh java_src
31