diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-06-19 09:26:03 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-06-19 09:26:03 +0000 |
commit | 9918693037dce8aa4bb6f08741b6812923486c18 (patch) | |
tree | 21d2b40bec7e6a7ea664acee056eb3d08e15a1cf /src/ci/docker/host-x86_64/dist-various-2/shared.sh | |
parent | Releasing progress-linux version 1.75.0+dfsg1-5~progress7.99u1. (diff) | |
download | rustc-9918693037dce8aa4bb6f08741b6812923486c18.tar.xz rustc-9918693037dce8aa4bb6f08741b6812923486c18.zip |
Merging upstream version 1.76.0+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/ci/docker/host-x86_64/dist-various-2/shared.sh')
-rw-r--r-- | src/ci/docker/host-x86_64/dist-various-2/shared.sh | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/src/ci/docker/host-x86_64/dist-various-2/shared.sh b/src/ci/docker/host-x86_64/dist-various-2/shared.sh deleted file mode 100644 index 291f26bda..000000000 --- a/src/ci/docker/host-x86_64/dist-various-2/shared.sh +++ /dev/null @@ -1,35 +0,0 @@ -#!/usr/bin/env bash -hide_output() { - { set +x; } 2>/dev/null - on_err=" -echo ERROR: An error was encountered with the build. -cat /tmp/build.log -exit 1 -" - trap "$on_err" ERR - bash -c "while true; do sleep 30; echo \$(date) - building ...; done" & - PING_LOOP_PID=$! - "$@" &> /tmp/build.log - trap - ERR - kill $PING_LOOP_PID - set -x -} - -# Copied from ../../shared.sh -function retry { - echo "Attempting with retry:" "$@" - local n=1 - local max=5 - while true; do - "$@" && break || { - if [[ $n -lt $max ]]; then - sleep $n # don't retry immediately - ((n++)) - echo "Command failed. Attempt $n/$max:" - else - echo "The command has failed after $n attempts." - return 1 - fi - } - done -} |