diff options
author | Abseil Team <absl-team@google.com> | 2022-11-15 09:08:33 -0800 |
---|---|---|
committer | Copybara-Service <copybara-worker@google.com> | 2022-11-15 09:09:28 -0800 |
commit | d6fa16c8c5a067382ba991fe9765772ee2698088 (patch) | |
tree | ff0836e9476d56f23569fec2fa3f894f2c8f7f9a /ci/macos_xcode_cmake.sh | |
parent | 3ed4ca1f7f6a32cbfaabb095dcd6a2b81c5a3155 (diff) | |
download | abseil-d6fa16c8c5a067382ba991fe9765772ee2698088.tar.gz abseil-d6fa16c8c5a067382ba991fe9765772ee2698088.tar.bz2 abseil-d6fa16c8c5a067382ba991fe9765772ee2698088.zip |
Remove absl/time/internal/zoneinfo.inc. It was used to guarantee
availability of a few timezones for "time_test" and "time_benchmark",
but (file-based) zoneinfo is now secured via existing Bazel data/env
attributes, or new CMake environment settings.
This also avoids the need for employing the CCTZ zone-info-source
extension mechanism (which is a win).
PiperOrigin-RevId: 488673952
Change-Id: I9def9d705c8f0dca3c0bcddc2406edb098ea5da3
Diffstat (limited to 'ci/macos_xcode_cmake.sh')
-rwxr-xr-x | ci/macos_xcode_cmake.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ci/macos_xcode_cmake.sh b/ci/macos_xcode_cmake.sh index 97988631..690f86b8 100755 --- a/ci/macos_xcode_cmake.sh +++ b/ci/macos_xcode_cmake.sh @@ -51,6 +51,7 @@ for compilation_mode in ${ABSL_CMAKE_BUILD_TYPES}; do -DCMAKE_MODULE_LINKER_FLAGS="-Wl,--no-undefined" \ -DABSL_GOOGLETEST_DOWNLOAD_URL="${ABSL_GOOGLETEST_DOWNLOAD_URL}" time cmake --build . - time ctest -C ${compilation_mode} --output-on-failure + time TZDIR=${ABSEIL_ROOT}/absl/time/internal/cctz/testdata/zoneinfo \ + ctest -C ${compilation_mode} --output-on-failure done done |