diff options
| author | Kyle Huey <khuey@kylehuey.com> | 2024-07-28 18:36:05 +0000 |
|---|---|---|
| committer | Kyle Huey <khuey@kylehuey.com> | 2024-08-09 05:55:40 -0700 |
| commit | 8db318cc960d3a4ddd508bdbb930304d7a967332 (patch) | |
| tree | c2b296387fd87933486fe5505575e9e435bf12f0 /src/ci/docker/scripts | |
| parent | 7bb345e677c0c11390da69389e9da472e45844fe (diff) | |
| download | rust-8db318cc960d3a4ddd508bdbb930304d7a967332.tar.gz rust-8db318cc960d3a4ddd508bdbb930304d7a967332.zip | |
Install zstd in dist builder image.
Build libzstd from source because the EPEL package is built without fPIC.
Diffstat (limited to 'src/ci/docker/scripts')
| -rwxr-xr-x | src/ci/docker/scripts/zstd.sh | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/src/ci/docker/scripts/zstd.sh b/src/ci/docker/scripts/zstd.sh new file mode 100755 index 00000000000..a3d37ccc311 --- /dev/null +++ b/src/ci/docker/scripts/zstd.sh @@ -0,0 +1,29 @@ +#!/bin/bash +set -ex + +hide_output() { + set +x + on_err=" +echo ERROR: An error was encountered with the build. +cat /tmp/zstd_build.log +exit 1 +" + trap "$on_err" ERR + bash -c "while true; do sleep 30; echo \$(date) - building ...; done" & + PING_LOOP_PID=$! + "$@" &> /tmp/zstd_build.log + trap - ERR + kill $PING_LOOP_PID + rm /tmp/zstd_build.log + set -x +} + +ZSTD=1.5.6 +curl -L https://github.com/facebook/zstd/releases/download/v$ZSTD/zstd-$ZSTD.tar.gz | tar xzf - + +cd zstd-$ZSTD +CFLAGS=-fPIC hide_output make -j$(nproc) VERBOSE=1 +hide_output make install + +cd .. +rm -rf zstd-$ZSTD |
