-
Notifications
You must be signed in to change notification settings - Fork 863
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
TUN-8072: Add script to download cloudflare go for Mac build agents
- Loading branch information
1 parent
652df22
commit 86b50ed
Showing
2 changed files
with
13 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
cd /tmp/ | ||
git clone -q https://github.com/cloudflare/go | ||
cd go/src | ||
# https://github.com/cloudflare/go/tree/34129e47042e214121b6bbff0ded4712debed18e is version go1.21.5-devel-cf | ||
git checkout -q 34129e47042e214121b6bbff0ded4712debed18e | ||
./make.bash | ||
|
||
export PATH="/tmp/go/bin:$PATH" | ||
go version | ||
which go | ||
go env |