1#!/bin/bash 2# 3# Copyright 2019 The Abseil Authors. 4# 5# Licensed under the Apache License, Version 2.0 (the "License"); 6# you may not use this file except in compliance with the License. 7# You may obtain a copy of the License at 8# 9# https://www.apache.org/licenses/LICENSE-2.0 10# 11# Unless required by applicable law or agreed to in writing, software 12# distributed under the License is distributed on an "AS IS" BASIS, 13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14# See the License for the specific language governing permissions and 15# limitations under the License. 16 17# This script that can be invoked to test abseil-cpp in a hermetic environment 18# using a Docker image on Linux. You must have Docker installed to use this 19# script. 20 21set -euox pipefail 22 23if [ -z ${ABSEIL_ROOT:-} ]; then 24 ABSEIL_ROOT="$(realpath $(dirname ${0})/..)" 25fi 26 27if [ -z ${STD:-} ]; then 28 STD="c++11 c++14 c++17" 29fi 30 31if [ -z ${COMPILATION_MODE:-} ]; then 32 COMPILATION_MODE="fastbuild opt" 33fi 34 35if [ -z ${EXCEPTIONS_MODE:-} ]; then 36 EXCEPTIONS_MODE="-fno-exceptions -fexceptions" 37fi 38 39readonly DOCKER_CONTAINER="gcr.io/google.com/absl-177019/linux_clang-latest:20200102" 40 41# USE_BAZEL_CACHE=1 only works on Kokoro. 42# Without access to the credentials this won't work. 43if [ ${USE_BAZEL_CACHE:-0} -ne 0 ]; then 44 DOCKER_EXTRA_ARGS="--volume=${KOKORO_KEYSTORE_DIR}:/keystore:ro ${DOCKER_EXTRA_ARGS:-}" 45 # Bazel doesn't track changes to tools outside of the workspace 46 # (e.g. /usr/bin/gcc), so by appending the docker container to the 47 # remote_http_cache url, we make changes to the container part of 48 # the cache key. Hashing the key is to make it shorter and url-safe. 49 container_key=$(echo ${DOCKER_CONTAINER} | sha256sum | head -c 16) 50 BAZEL_EXTRA_ARGS="--remote_http_cache=https://storage.googleapis.com/absl-bazel-remote-cache/${container_key} --google_credentials=/keystore/73103_absl-bazel-remote-cache ${BAZEL_EXTRA_ARGS:-}" 51fi 52 53for std in ${STD}; do 54 for compilation_mode in ${COMPILATION_MODE}; do 55 for exceptions_mode in ${EXCEPTIONS_MODE}; do 56 echo "--------------------------------------------------------------------" 57 time docker run \ 58 --volume="${ABSEIL_ROOT}:/abseil-cpp:ro" \ 59 --workdir=/abseil-cpp \ 60 --cap-add=SYS_PTRACE \ 61 --rm \ 62 -e CC="/opt/llvm/clang/bin/clang" \ 63 -e BAZEL_COMPILER="llvm" \ 64 -e BAZEL_CXXOPTS="-std=${std}" \ 65 -e CPLUS_INCLUDE_PATH="/usr/include/c++/6" \ 66 ${DOCKER_EXTRA_ARGS:-} \ 67 ${DOCKER_CONTAINER} \ 68 /usr/local/bin/bazel test ... \ 69 --compilation_mode="${compilation_mode}" \ 70 --copt="${exceptions_mode}" \ 71 --copt=-Werror \ 72 --define="absl=1" \ 73 --keep_going \ 74 --show_timestamps \ 75 --test_env="GTEST_INSTALL_FAILURE_SIGNAL_HANDLER=1" \ 76 --test_env="TZDIR=/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo" \ 77 --test_output=errors \ 78 --test_tag_filters=-benchmark \ 79 ${BAZEL_EXTRA_ARGS:-} 80 done 81 done 82done 83