c6954897f7
-- 66a0a46462692378f77518f9db766a218bfac40b by Derek Mauro <dmauro@google.com>: Internal change PiperOrigin-RevId: 300565981 -- 2a1ad67662b2e22beec7d3be019e6bba23c41c7f by Derek Mauro <dmauro@google.com>: Fix CompressedTuple move constructor on MSVC Imports GitHub #637 PiperOrigin-RevId: 300545840 -- a3ee3ad036bbb6b0031121fd58299e5c59a243e1 by Derek Mauro <dmauro@google.com>: Disable LLVM's XRay instrumentation on Android Fixes #626 PiperOrigin-RevId: 300540906 -- 87999244b1f825e585ec12a431086cb60daeb24f by Gennadiy Rozental <rogeeff@google.com>: Increase max cord depth by 2. After reviewing of the paper we can prove that the algorithm in fact can lead to slightly larger max depth. PiperOrigin-RevId: 300422376 -- 98de175ee8ad33290ef883c167c2de4414a11007 by Abseil Team <absl-team@google.com>: Use *opt/opt-> instead of opt.value() in an example, after checking the optional has a value. PiperOrigin-RevId: 300253502 -- 1107aa0acf0fe743ef50173e02e48f0d4eb572ef by Derek Mauro <dmauro@google.com>: Stop overriding the default system C++ dialect in CMake CMake on MacOS has some very strange defaults, like Wno-c++11-extensions, and doesn't seem to respect CMAKE_CXX_STANDARD, so use CMAKE_CXX_FLAGS instead. PiperOrigin-RevId: 300180753 GitOrigin-RevId: 66a0a46462692378f77518f9db766a218bfac40b Change-Id: Icd7b84c49306441b012cb87f244cc92a11697db8
44 lines
1.4 KiB
Bash
Executable file
44 lines
1.4 KiB
Bash
Executable file
#!/bin/bash
|
|
#
|
|
# Copyright 2019 The Abseil Authors.
|
|
#
|
|
# 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
|
|
#
|
|
# https://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.
|
|
|
|
# This script is invoked on Kokoro to test Abseil on macOS.
|
|
# It is not hermetic and may break when Kokoro is updated.
|
|
|
|
set -euox pipefail
|
|
|
|
if [ -z ${ABSEIL_ROOT:-} ]; then
|
|
ABSEIL_ROOT="$(dirname ${0})/.."
|
|
fi
|
|
ABSEIL_ROOT=$(realpath ${ABSEIL_ROOT})
|
|
|
|
if [ -z ${ABSL_CMAKE_BUILD_TYPES:-} ]; then
|
|
ABSL_CMAKE_BUILD_TYPES="Debug"
|
|
fi
|
|
|
|
for compilation_mode in ${ABSL_CMAKE_BUILD_TYPES}; do
|
|
BUILD_DIR=$(mktemp -d ${compilation_mode}.XXXXXXXX)
|
|
cd ${BUILD_DIR}
|
|
|
|
# TODO(absl-team): Enable -Werror once all warnings are fixed.
|
|
time cmake ${ABSEIL_ROOT} \
|
|
-GXcode \
|
|
-DCMAKE_BUILD_TYPE=${compilation_mode} \
|
|
-DCMAKE_CXX_FLAGS=-std=c++14 \
|
|
-DABSL_USE_GOOGLETEST_HEAD=ON \
|
|
-DABSL_RUN_TESTS=ON
|
|
time cmake --build .
|
|
time ctest -C ${compilation_mode} --output-on-failure
|
|
done
|