Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
ParaView-Superbuild
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ParaView
ParaView-Superbuild
Commits
89ed607a
Commit
89ed607a
authored
4 years ago
by
Ben Boeckel
Browse files
Options
Downloads
Patches
Plain Diff
ci: use a patched macOS build for server timeout problems
See
https://github.com/mozilla/sccache/pull/868
parent
4e027104
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!784
ci: use a patched macOS build for server timeout problems
Checking pipeline status
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.gitlab/ci/sccache.sh
+12
-4
12 additions, 4 deletions
.gitlab/ci/sccache.sh
with
12 additions
and
4 deletions
.gitlab/ci/sccache.sh
+
12
−
4
View file @
89ed607a
...
...
@@ -2,17 +2,17 @@
set
-e
readonly
version
=
"0.2.13"
case
"
$(
uname
-s
)
"
in
Linux
)
version
=
"0.2.13"
shatool
=
"sha256sum"
sha256sum
=
"28a5499e340865b08b632306b435913beb590fbd7b49a3f887a623b459fabdeb"
platform
=
"x86_64-unknown-linux-musl"
;;
Darwin
)
version
=
"gfe63078"
shatool
=
"shasum -a 256"
sha256sum
=
"
f564e948abadfc9e409e
b1
c
d7
babf24c6784057d5506c3b0a04cdd37cd830ae9
"
sha256sum
=
"
60a0302
b1d7
227f7ef56abd82266353f570d27c6e850c56c6448bf62def38888
"
platform
=
"x86_64-apple-darwin"
;;
*
)
...
...
@@ -20,6 +20,7 @@ case "$( uname -s )" in
exit
1
;;
esac
readonly
version
readonly
shatool
readonly sha256sum
readonly
platform
...
...
@@ -27,10 +28,17 @@ readonly platform
readonly
filename
=
"sccache-
$version
-
$platform
"
readonly
tarball
=
"
$filename
.tar.gz"
if
[
"
$(
uname
-s
)
"
=
"Darwin"
]
;
then
url
=
"https://paraview.org/files/dependencies"
else
url
=
"https://github.com/mozilla/sccache/releases/download/
$version
"
fi
readonly
url
cd
.gitlab
echo
"
$sha256sum
$tarball
"
>
sccache.sha256sum
curl
-OL
"
https://github.com/mozilla/sccache/releases/download/
$version
/
$tarball
"
curl
-OL
"
$url
/
$tarball
"
$shatool
--check
sccache.sha256sum
tar
xf
"
$tarball
"
mv
"
$filename
/sccache"
.
...
...
This diff is collapsed.
Click to expand it.
Ben Boeckel
@ben.boeckel
mentioned in commit
8fbd03b9
·
4 years ago
mentioned in commit
8fbd03b9
mentioned in commit 8fbd03b958146571a0cb75c30069d45f9c75ad61
Toggle commit list
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment