downgrade to 1.15.2
Adin Schmahmann committed
May 12, 2021 at 17:59 UTC
73e7e023c0620e6180828946c88e147dad1fc1d8
4 files changed
+6
-6
.circleci/config.yml
+2
-2
@@ -33,7 +33,7 @@ default_environment: &default_environment
33
executors:
34
golang:
35
docker:
36
- - image: circleci/golang:1.15.8
36
+ - image: circleci/golang:1.15.2
37
working_directory: ~/ipfs/go-ipfs
38
environment:
39
<<: *default_environment
@@ -60,7 +60,7 @@ executors:
60
E2E_IPFSD_TYPE: go
61
dockerizer:
62
docker:
63
- - image: circleci/golang:1.15.8
63
+ - image: circleci/golang:1.15.2
64
environment:
65
IMAGE_NAME: ipfs/go-ipfs
66
WIP_IMAGE_TAG: wip
Dockerfile
+1
-1
@@ -1,5 +1,5 @@
1
# Note: when updating the go minor version here, also update the go-channel in snap/snapcraft.yml
2
-FROM golang:1.15.8-buster
2
+FROM golang:1.15.2-buster
3
LABEL maintainer="Steven Allen <steven@stebalien.com>"
4
5
# Install deps
README.md
+2
-2
@@ -160,7 +160,7 @@ PS> scoop install go-ipfs
160
161
### Build from Source
162
163
-go-ipfs's build system requires Go 1.15.8 and some standard POSIX build tools:
163
+go-ipfs's build system requires Go 1.15.2 and some standard POSIX build tools:
164
165
* GNU make
166
* Git
@@ -170,7 +170,7 @@ To build without GCC, build with `CGO_ENABLED=0` (e.g., `make build CGO_ENABLED=
170
171
#### Install Go
172
173
-The build process for ipfs requires Go 1.15.8 or higher. If you don't have it: [Download Go 1.15+](https://golang.org/dl/).
173
+The build process for ipfs requires Go 1.15.2 or higher. If you don't have it: [Download Go 1.15+](https://golang.org/dl/).
174
175
You'll need to add Go's bin directories to your `$PATH` environment variable e.g., by adding these lines to your `/etc/profile` (for a system-wide installation) or `$HOME/.profile`:
176
mk/golang.mk
+1
-1
@@ -1,5 +1,5 @@
1
# golang utilities
2
-GO_MIN_VERSION = 1.15.8
2
+GO_MIN_VERSION = 1.15.2
3
export GO111MODULE=on
4
5