aboutsummaryrefslogtreecommitdiff
path: root/kokoro
diff options
context:
space:
mode:
authorambrosin <ambrosin@google.com>2023-06-28 02:42:59 -0700
committerCopybara-Service <copybara-worker@google.com>2023-06-28 02:43:57 -0700
commit454db15efba155179e8794d5d36e3a8317718a59 (patch)
tree441e9b0d4af37e40fdf25d412cdc485f181422e5 /kokoro
parentf7102ed64ff9d2fa1dc39cbe65521dfe9f7d5839 (diff)
downloadtink-454db15efba155179e8794d5d36e3a8317718a59.tar.gz
Remove per-language test scripts for apps/.
NOTE: The apps/ folder is being removed as part of the migration to github.com/tink-crypto/tink-java-apps PiperOrigin-RevId: 543998275
Diffstat (limited to 'kokoro')
-rw-r--r--kokoro/gcp_ubuntu_per_language/apps/run_tests.sh26
-rw-r--r--kokoro/macos_external/apps/run_tests.sh30
2 files changed, 0 insertions, 56 deletions
diff --git a/kokoro/gcp_ubuntu_per_language/apps/run_tests.sh b/kokoro/gcp_ubuntu_per_language/apps/run_tests.sh
deleted file mode 100644
index a7519d613..000000000
--- a/kokoro/gcp_ubuntu_per_language/apps/run_tests.sh
+++ /dev/null
@@ -1,26 +0,0 @@
-#!/bin/bash
-# Copyright 2020 Google LLC
-#
-# 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.
-################################################################################
-
-
-set -euo pipefail
-cd ${KOKORO_ARTIFACTS_DIR}/git/tink
-
-./kokoro/testutils/update_android_sdk.sh
-
-cd apps
-use_bazel.sh $(cat .bazelversion)
-time bazel build -- ...
-time bazel test --test_output="errors" -- ...
diff --git a/kokoro/macos_external/apps/run_tests.sh b/kokoro/macos_external/apps/run_tests.sh
deleted file mode 100644
index 2bb967708..000000000
--- a/kokoro/macos_external/apps/run_tests.sh
+++ /dev/null
@@ -1,30 +0,0 @@
-#!/bin/bash
-# Copyright 2020 Google LLC
-#
-# 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.
-################################################################################
-
-set -euo pipefail
-
-export XCODE_VERSION="14.1"
-export DEVELOPER_DIR="/Applications/Xcode.app/Contents/Developer"
-export ANDROID_HOME="/usr/local/share/android-sdk"
-export COURSIER_OPTS="-Djava.net.preferIPv6Addresses=true"
-
-if [[ -n "${KOKORO_ROOT:-}" ]] ; then
- cd "$(echo "${KOKORO_ARTIFACTS_DIR}"/git*/tink)"
- export JAVA_HOME=$(/usr/libexec/java_home -v "1.8.0_292")
-fi
-
-./kokoro/testutils/update_android_sdk.sh
-./kokoro/testutils/run_bazel_tests.sh apps