Skip to content
This repository was archived by the owner on Aug 2, 2021. It is now read-only.

Commit f878aed

Browse files
author
Svetomir Smiljkovic
authored
Upgrade golang version to v1.14 (#2144)
1 parent 874370e commit f878aed

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

.travis.yml

+7-7
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- stage: lint
1515
os: linux
1616
dist: trusty
17-
go: 1.13.x
17+
go: 1.14.x
1818
env:
1919
- lint
2020
script:
@@ -25,7 +25,7 @@ jobs:
2525
os: linux
2626
dist: trusty
2727
sudo: required
28-
go: 1.13.x
28+
go: 1.14.x
2929
script:
3030
- sudo modprobe fuse
3131
- sudo chmod 666 /dev/fuse
@@ -35,7 +35,7 @@ jobs:
3535

3636
- stage: build
3737
os: osx
38-
go: 1.13.x
38+
go: 1.14.x
3939
script:
4040
- echo "Increase the maximum number of open file descriptors on macOS"
4141
- NOFILE=20480
@@ -55,7 +55,7 @@ jobs:
5555
os: linux
5656
dist: trusty
5757
sudo: required
58-
go: 1.13.x
58+
go: 1.14.x
5959
env:
6060
- azure-linux
6161
addons:
@@ -89,7 +89,7 @@ jobs:
8989
dist: trusty
9090
services:
9191
- docker
92-
go: 1.13.x
92+
go: 1.14.x
9393
env:
9494
- azure-linux-mips
9595
script:
@@ -113,7 +113,7 @@ jobs:
113113
- stage: deploy
114114
if: type = push
115115
os: osx
116-
go: 1.13.x
116+
go: 1.14.x
117117
env:
118118
- azure-osx
119119
script:
@@ -126,7 +126,7 @@ jobs:
126126
if: type = cron
127127
os: linux
128128
dist: trusty
129-
go: 1.13.x
129+
go: 1.14.x
130130
env:
131131
- azure-purge
132132
script:

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.13-alpine as builder
1+
FROM golang:1.14-alpine as builder
22
RUN apk add --no-cache make gcc musl-dev linux-headers git
33
ADD . /swarm
44
WORKDIR /swarm

Dockerfile.alltools

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.13-alpine as builder
1+
FROM golang:1.14-alpine as builder
22
RUN apk add --no-cache make gcc musl-dev linux-headers git
33
ADD . /swarm
44
WORKDIR /swarm

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Swarm is a distributed storage platform and content distribution service, a nati
3333

3434
## Building the source
3535

36-
It's recommended to use Go 1.13 to build Swarm.
36+
It's recommended to use Go 1.14 to build Swarm.
3737

3838
To simply compile the `swarm` binary without a `GOPATH`:
3939

appveyor.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ environment:
2727
install:
2828
- git submodule update --init
2929
- rmdir C:\go /s /q
30-
- appveyor DownloadFile https://dl.google.com/go/go1.13.windows-%APP_ARCH%.zip
31-
- 7z x go1.13.windows-%APP_ARCH%.zip -y -oC:\ > NUL
30+
- appveyor DownloadFile https://dl.google.com/go/go1.14.windows-%APP_ARCH%.zip
31+
- 7z x go1.14.windows-%APP_ARCH%.zip -y -oC:\ > NUL
3232
- go version
3333
- gcc --version
3434

0 commit comments

Comments
 (0)