From d01d6bb63db9da000dd1b3c8491a6c0d43877c29 Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Wed, 24 Mar 2021 02:14:00 +0200 Subject: chore(3p): Clean up unused third-party packages Removes the following currently unused packages: * terraform-gcp * cpp.googleapis * nixery Change-Id: I02c38f0e6d23b1b9008706ca5a3b9db51cc9b689 Reviewed-on: https://cl.tvl.fyi/c/depot/+/2650 Tested-by: BuildkiteCI Reviewed-by: sterni Reviewed-by: glittershark --- .../cpp/googleapis/ci/kokoro/install/build.sh | 106 --------------------- 1 file changed, 106 deletions(-) delete mode 100755 third_party/cpp/googleapis/ci/kokoro/install/build.sh (limited to 'third_party/cpp/googleapis/ci/kokoro/install/build.sh') diff --git a/third_party/cpp/googleapis/ci/kokoro/install/build.sh b/third_party/cpp/googleapis/ci/kokoro/install/build.sh deleted file mode 100755 index 42e85f39b6fc..000000000000 --- a/third_party/cpp/googleapis/ci/kokoro/install/build.sh +++ /dev/null @@ -1,106 +0,0 @@ -#!/usr/bin/env bash -# -# Copyright 2019 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 -eu - -if [[ $# -eq 1 ]]; then - export TEST_TARGET="${1}" -elif [[ -n "${KOKORO_JOB_NAME:-}" ]]; then - # Kokoro injects the KOKORO_JOB_NAME environment variable, the value of this - # variable is cloud-cpp/spanner/ (or more - # generally ). By convention we name these - # files `$foo.cfg` for continuous builds and `$foo-presubmit.cfg` for - # presubmit builds. Here we extract the value of "foo" and use it as the build - # name. - TEST_TARGET="$(basename "${KOKORO_JOB_NAME}" "-presubmit")" - export TEST_TARGET -else - echo "Aborting build as the distribution name is not defined." - echo "If you are invoking this script via the command line use:" - echo " $0 " - echo - echo "If this script is invoked by Kokoro, the CI system is expected to set" - echo "the KOKORO_JOB_NAME environment variable." - exit 1 -fi - -echo "================================================================" -echo "Change working directory to project root $(date)." -cd "$(dirname "$0")/../../.." - -if [[ -z "${PROJECT_ID+x}" ]]; then - readonly PROJECT_ID="cloud-devrel-kokoro-resources" -fi - -readonly DEV_IMAGE="gcr.io/${PROJECT_ID}/cpp-cmakefiles/test-install-dev-${TEST_TARGET}" -readonly IMAGE="gcr.io/${PROJECT_ID}/cpp-cmakefiles/test-install-${TEST_TARGET}" - -has_cache="false" - -# We download the cached dev image for pull requests on kokoro. For continuous -# jobs, we don't download the cached image. This means we build from scratch and -# upload the image for future builds for pull requests. -if [[ -n "${KOKORO_JOB_NAME:-}" ]] \ - && [[ -n "${KOKORO_GITHUB_PULL_REQUEST_NUMBER:-}" ]]; then - echo "================================================================" - echo "Download existing image (if available) for ${TEST_TARGET} $(date)." - if docker pull "${DEV_IMAGE}:latest"; then - echo "Existing image successfully downloaded." - has_cache="true" - fi - echo "================================================================" -fi - -echo "================================================================" -echo "Build base image with minimal development tools for ${TEST_TARGET} $(date)." -update_cache="false" - -devtools_flags=( - # Only build up to the stage that installs the minimal development tools, but - # does not compile any of our code. - "--target" "devtools" - # Create the image with the same tag as the cache we are using, so we can - # upload it. - "-t" "${DEV_IMAGE}:latest" - "-f" "ci/kokoro/install/Dockerfile.${TEST_TARGET}" -) - -if "${has_cache}"; then - devtools_flags+=("--cache-from=${DEV_IMAGE}:latest") -fi - -echo "Running docker build with " "${devtools_flags[@]}" -if docker build "${devtools_flags[@]}" ci; then - update_cache="true" -fi - -# We upload the cached image for continuous builds. -if "${update_cache}" && [[ -z "${KOKORO_GITHUB_PULL_REQUEST_NUMBER:-}" ]] \ - && [[ -n "${KOKORO_JOB_NAME:-}" ]]; then - echo "================================================================" - echo "Uploading updated base image for ${TEST_TARGET} $(date)." - # Do not stop the build on a failure to update the cache. - docker push "${DEV_IMAGE}:latest" || true -fi - -echo "================================================================" -echo "Run validation script for INSTALL instructions on ${TEST_TARGET}." -docker build \ - "--cache-from=${DEV_IMAGE}:latest" \ - "--target=install" \ - -t "${IMAGE}" \ - -f "ci/kokoro/install/Dockerfile.${TEST_TARGET}" . -echo "================================================================" -- cgit 1.4.1