mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-01-07 04:40:05 -06:00
28 lines
805 B
Bash
28 lines
805 B
Bash
#!/usr/bin/env bash
|
|
|
|
#
|
|
# $1 - root path where .bingo resides
|
|
# $2 - name of the cache item
|
|
#
|
|
|
|
ROOT_PATH="$1"
|
|
if [ -z "$1" ]; then
|
|
ROOT_PATH="/drone/src"
|
|
fi
|
|
BINGO_DIR="$ROOT_PATH/.bingo"
|
|
|
|
# generate hash of a .bingo folder
|
|
BINGO_HASH=$(cat "$BINGO_DIR"/* | sha256sum | cut -d ' ' -f 1)
|
|
|
|
URL="$CACHE_ENDPOINT/$CACHE_BUCKET/ocis/go-bin/$BINGO_HASH/$2"
|
|
if curl --output /dev/null --silent --head --fail "$URL"; then
|
|
echo "[INFO] Go bin cache with has '$BINGO_HASH' exists."
|
|
# https://discourse.drone.io/t/how-to-exit-a-pipeline-early-without-failing/3951
|
|
# exit a Pipeline early without failing
|
|
exit 78
|
|
else
|
|
# stored hash of a .bingo folder to '.bingo_hash' file
|
|
echo "$BINGO_HASH" >"$ROOT_PATH/.bingo_hash"
|
|
echo "[INFO] Go bin cache with has '$BINGO_HASH' does not exist."
|
|
fi
|