-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/master' into f-template-followups
* origin/master: (90 commits) Port OSS changes from perf standby fix (#7818) Clarify language around 472 (#7814) Revert change suggested by vet. See the comment for details. (#7815) Document secondary activation public key endpoints/params (#7810) debug: check for nil secret on replication status response before accessing secret.Data (#7811) Update Azure storage docs (#7808) changelog++ ci: switch to go1.12.12 on machine executors (#7703) website: Homepage updates, use case pages, navigation changes (#7782) Help text: update token create help about id value (#7792) changelog++ changelog++ Update API to use lease_id in body of sys/leases/revoke call (#7777) changelog++ Don't allow registering a non-root zero TTL token lease (#7524) Update go-metrics (#7794) Update go-metrics in sdk (#7795) doc: remove comma from list.html.md (#7766) Update azure secrets plugin (#7788) Update helm.html.md (#7310) ...
- Loading branch information
Showing
403 changed files
with
172,833 additions
and
14,388 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
--- | ||
description: > | ||
Ensure the right version of Go is installed and set GOPATH to $HOME/go. | ||
steps: | ||
- run: | ||
working_directory: ~/ | ||
name: Setup Go | ||
command: | | ||
[ -n "$GO_VERSION" ] || { echo "You must set GO_VERSION"; exit 1; } | ||
# Install Go | ||
curl -sSLO "https://dl.google.com/go/go${GO_VERSION}.linux-amd64.tar.gz" | ||
sudo rm -rf /usr/local/go | ||
sudo tar -C /usr/local -xzf "go${GO_VERSION}.linux-amd64.tar.gz" | ||
rm -f "go${GO_VERSION}.linux-amd64.tar.gz" | ||
GOPATH="/go" | ||
mkdir $GOPATH 2>/dev/null || { sudo mkdir $GOPATH && sudo chmod 777 $GOPATH; } | ||
echo "export GOPATH='$GOPATH'" >> "$BASH_ENV" | ||
echo "export PATH='$PATH:$GOPATH/bin:/usr/local/go/bin'" >> "$BASH_ENV" | ||
echo "$ go version" | ||
go version |
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 was deleted.
Oops, something went wrong.
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
Oops, something went wrong.