forked from containers/podman
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request containers#14644 from cevich/v3.0.1-rhel_reduce_te…
…sting [v3.0.1-rhel] Cirrus: Prune testing tasks for long-term reliability
- Loading branch information
Showing
4 changed files
with
28 additions
and
132 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,23 @@ | ||
#!/usr/bin/env bash | ||
|
||
set -e | ||
|
||
die() { echo "${1:-No error message given} (from $(basename $0))"; exit 1; } | ||
|
||
[ -n "$VERSION" ] || die "\$VERSION is empty or undefined" | ||
[ -n "$GOBIN" ] || die "\$GOBIN is empty or undefined" | ||
|
||
BIN="$GOBIN/golangci-lint" | ||
function install() { | ||
echo "Installing golangci-lint v$VERSION into $BIN" | ||
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s v$VERSION | ||
} | ||
|
||
BIN="./bin/golangci-lint" | ||
if [ ! -x "$BIN" ]; then | ||
echo "Installing golangci-lint v$VERSION into $GOBIN" | ||
curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | sh -s -- -b $GOBIN v$VERSION | ||
install | ||
else | ||
# Prints its own file name as part of --version output | ||
echo "Using existing $(dirname $BIN)/$($BIN --version)" | ||
$BIN --version | grep "$VERSION" | ||
if [ $? -eq 0 ]; then | ||
echo "Using existing $(dirname $BIN)/$($BIN --version)" | ||
else | ||
install | ||
fi | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters