vtk-m/.gitlab/ci/config/sccache.sh

29 lines
945 B
Bash
Raw Normal View History

2020-03-11 18:16:04 +00:00
#!/bin/sh
##=============================================================================
##
## Copyright (c) Kitware, Inc.
## All rights reserved.
## See LICENSE.txt for details.
##
## This software is distributed WITHOUT ANY WARRANTY; without even
## the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
## PURPOSE. See the above copyright notice for more information.
##
##=============================================================================
2020-03-11 18:16:04 +00:00
set -e
readonly version="nvcc_v4"
readonly sha256sum="260779b4a740fe8373d251d1e318541a98dd5cd2f8051eedd55227a5a852fdf7"
readonly filename="sccache-0.2.14-$version-x86_64-unknown-linux-musl"
2020-03-11 18:16:04 +00:00
readonly tarball="$filename.tar.gz"
cd .gitlab
echo "$sha256sum $tarball" > sccache.sha256sum
curl --insecure -OL "https://github.com/robertmaynard/sccache/releases/download/$version/$tarball"
2020-03-11 18:16:04 +00:00
sha256sum --check sccache.sha256sum
tar xf "$tarball"
#mv "$filename/sccache" .