install specific Go version for sharness tests
Marten Seemann committed
May 14, 2021 at 15:02 UTC
bf4cf14bd93efaed4066c757c252e3acf688d835
1 file changed
+5
.circleci/config.yml
+5
@@ -130,6 +130,11 @@ jobs:
130
TEST_VERBOSE: 1
131
steps:
132
- run: sudo apt update
133
+ - run: |
134
+ mkdir ~/localgo && cd ~/localgo
135
+ wget https://golang.org/dl/go1.16.4.linux-amd64.tar.gz
136
+ tar xfz go1.16.4.linux-amd64.tar.gz
137
+ echo "export PATH=$(pwd)/go/bin:$PATH" >> $BASH_ENV
138
- run: sudo apt install socat net-tools
139
- checkout
140