Commit 1a75c40f authored by Jeromy's avatar Jeromy

require go1.9

License: MIT
Signed-off-by: default avatarJeromy <jeromyj@gmail.com>
parent f8eaae32
...@@ -10,7 +10,7 @@ os: ...@@ -10,7 +10,7 @@ os:
language: go language: go
go: go:
- 1.8 - 1.9
env: env:
- TEST_NO_FUSE=1 TEST_VERBOSE=1 TEST_SUITE=test_go_expensive - TEST_NO_FUSE=1 TEST_VERBOSE=1 TEST_SUITE=test_go_expensive
......
...@@ -104,7 +104,7 @@ With snap, in any of the [supported Linux distributions](https://snapcraft.io/do ...@@ -104,7 +104,7 @@ With snap, in any of the [supported Linux distributions](https://snapcraft.io/do
#### Install Go #### Install Go
The build process for ipfs requires Go 1.8 or higher. If you don't have it: [Download Go 1.8+](https://golang.org/dl/). The build process for ipfs requires Go 1.9 or higher. If you don't have it: [Download Go 1.9+](https://golang.org/dl/).
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`: 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`:
...@@ -148,7 +148,7 @@ mismatched APIs. ...@@ -148,7 +148,7 @@ mismatched APIs.
* Also, [instructions for OpenBSD](docs/openbsd.md). * Also, [instructions for OpenBSD](docs/openbsd.md).
* `git` is required in order for `go get` to fetch all dependencies. * `git` is required in order for `go get` to fetch all dependencies.
* Package managers often contain out-of-date `golang` packages. * Package managers often contain out-of-date `golang` packages.
Ensure that `go version` reports at least 1.8. See above for how to install go. Ensure that `go version` reports at least 1.9. See above for how to install go.
* If you are interested in development, please install the development * If you are interested in development, please install the development
dependencies as well. dependencies as well.
* *WARNING: Older versions of OSX FUSE (for Mac OS X) can cause kernel panics when mounting!* * *WARNING: Older versions of OSX FUSE (for Mac OS X) can cause kernel panics when mounting!*
......
include mk/header.mk include mk/header.mk
dist_root_$(d)=/ipfs/QmR27Do9gqx9VmuQTEX1UGXETSWYJTQzPzxS5FNUnySCv1 dist_root_$(d)=/ipfs/QmT3CLJKJzWPuN4NAN4LLy69UpKskMF3AuYhXstKdn8V43
$(d)/gx: $(d)/gx-v0.12.0 $(d)/gx: $(d)/gx-v0.12.1
$(d)/gx-go: $(d)/gx-go-v1.5.0 $(d)/gx-go: $(d)/gx-go-v1.6.0
TGTS_$(d) := $(d)/gx $(d)/gx-go TGTS_$(d) := $(d)/gx $(d)/gx-go
DISTCLEAN += $(wildcard $(d)/gx-v*) $(wildcard $(d)/gx-go-v*) $(d)/tmp DISTCLEAN += $(wildcard $(d)/gx-v*) $(wildcard $(d)/gx-go-v*) $(d)/tmp
......
FROM golang:1.8 FROM golang:1.9
MAINTAINER Jakub Sztandera <kubuxu@ipfs.io> MAINTAINER Jakub Sztandera <kubuxu@ipfs.io>
......
...@@ -12,8 +12,8 @@ machine: ...@@ -12,8 +12,8 @@ machine:
post: post:
- sudo rm -rf /usr/local/go - sudo rm -rf /usr/local/go
- if [ ! -e go1.8.3.linux-amd64.tar.gz ]; then curl -o go1.8.3.linux-amd64.tar.gz https://storage.googleapis.com/golang/go1.8.3.linux-amd64.tar.gz; fi - if [ ! -e go1.9.2.linux-amd64.tar.gz ]; then curl -o go1.9.2.linux-amd64.tar.gz https://storage.googleapis.com/golang/go1.9.2.linux-amd64.tar.gz; fi
- sudo tar -C /usr/local -xzf go1.8.3.linux-amd64.tar.gz - sudo tar -C /usr/local -xzf go1.9.2.linux-amd64.tar.gz
services: services:
- docker - docker
...@@ -30,7 +30,7 @@ dependencies: ...@@ -30,7 +30,7 @@ dependencies:
- cd "$HOME/.go_workspace/src/$IMPORT_PATH" && make deps - cd "$HOME/.go_workspace/src/$IMPORT_PATH" && make deps
cache_directories: cache_directories:
- ~/go1.8.3.linux-amd64.tar.gz - ~/go1.9.2.linux-amd64.tar.gz
- "$HOME/.go_workspace/src/gx/ipfs" - "$HOME/.go_workspace/src/gx/ipfs"
test: test:
......
# golang utilities # golang utilities
GO_MIN_VERSION = 1.8 GO_MIN_VERSION = 1.9
# pre-definitions # pre-definitions
GOCC ?= go GOCC ?= go
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
}, },
"gx": { "gx": {
"dvcsimport": "github.com/ipfs/go-ipfs", "dvcsimport": "github.com/ipfs/go-ipfs",
"goversion": "1.8" "goversion": "1.9"
}, },
"gxDependencies": [ "gxDependencies": [
{ {
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment