diff options
author | Brad King <brad.king@kitware.com> | 2021-02-18 19:32:37 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2021-02-23 16:21:11 (GMT) |
commit | 73150a37982fe6822ddf3a3bc206ed35de013f1a (patch) | |
tree | c889819340ef381d4e7228795869ac93d246ff17 /.gitlab | |
parent | cab41b96ac60626814ace438930e85297d07662d (diff) | |
download | CMake-73150a37982fe6822ddf3a3bc206ed35de013f1a.zip CMake-73150a37982fe6822ddf3a3bc206ed35de013f1a.tar.gz CMake-73150a37982fe6822ddf3a3bc206ed35de013f1a.tar.bz2 |
ci: add sccache 0.2.15 custom build for aarch64-apple-darwin
Our custom build includes a patch to avoid server startup timeouts.
Diffstat (limited to '.gitlab')
-rwxr-xr-x | .gitlab/ci/sccache.sh | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/.gitlab/ci/sccache.sh b/.gitlab/ci/sccache.sh index 6b9e435..12b8f9d 100755 --- a/.gitlab/ci/sccache.sh +++ b/.gitlab/ci/sccache.sh @@ -23,6 +23,13 @@ case $kernel in platform="x86_64-apple-darwin" url="https://paraview.org/files/dependencies" ;; + Darwin-arm64) + version="0.2.15-1-disk_cache_init" + shatool="shasum -a 256" + sha256sum="f7c9ff78e701810b8b1dbc2a163c7fda1177fc3f69c71f46e7a38242657a99fd" + platform="aarch64-apple-darwin" + url="https://cmake.org/files/dependencies/sccache" + ;; *) echo "Unrecognized platform $kernel" exit 1 |