Skip to content

Commit eded57a

Browse files
committed
golang: v1.11
1 parent 9f60f35 commit eded57a

File tree

3 files changed

+15
-15
lines changed

3 files changed

+15
-15
lines changed

.buildkite/pipeline.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ steps:
88
automatic: true
99
plugins:
1010
golang#v2.0.0:
11-
version: "1.10"
11+
version: "1.11"
1212
import: "${AKASH_GO_PACKAGE}"
1313
environment:
1414
- TEST_DELAY_THREAD_START
@@ -19,7 +19,7 @@ steps:
1919
automatic: true
2020
plugins:
2121
golang#v2.0.0:
22-
version: "1.10"
22+
version: "1.11"
2323
import: "${AKASH_GO_PACKAGE}"
2424
environment:
2525
- TEST_DELAY_THREAD_START
@@ -37,14 +37,14 @@ steps:
3737
- name: ":man-juggling: integration"
3838
plugins:
3939
golang#v2.0.0:
40-
version: "1.10"
40+
version: "1.11"
4141
import: "${AKASH_GO_PACKAGE}"
4242
command: .buildkite/script/test.sh integration
4343

4444
- name: ":hospital: hygiene checks"
4545
plugins:
4646
golang#v2.0.0:
47-
version: "1.10"
47+
version: "1.11"
4848
import: "${AKASH_GO_PACKAGE}"
4949
command: .buildkite/script/test.sh lint
5050

@@ -60,13 +60,13 @@ steps:
6060
- TEST_DELAY_THREAD_START
6161
command: .buildkite/script/test.sh test-lite
6262

63-
- name: ":wilted_flower: golang with 1.9"
63+
- name: ":wilted_flower: golang with 1.10"
6464
retry:
6565
automatic: true
6666
branches: master
6767
plugins:
6868
golang#v2.0.0:
69-
version: "1.9"
69+
version: "1.10"
7070
import: "${AKASH_GO_PACKAGE}"
7171
environment:
7272
- TEST_DELAY_THREAD_START

.travis.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ env:
1212
jobs:
1313
include:
1414

15-
# osx/1.10: tests, integration, image-bins
15+
# osx/1.11: tests, integration, image-bins
1616
- name: test
1717
os: osx
1818
osx_image: xcode9.3beta
19-
go: "1.10"
19+
go: "1.11"
2020
script:
2121
- make build
2222
- make test-vet
@@ -26,30 +26,30 @@ jobs:
2626
- make image-bins
2727
if: type = cron
2828

29-
# linux/1.10 (mainline): run skipped tests
29+
# linux/1.11 (mainline): run skipped tests
3030
- name: test-skipped
3131
os: linux
32-
go: "1.10"
32+
go: "1.11"
3333
sudo: required
3434
env: TEST_UNSKIP=true
3535
script:
3636
- go test -v -count=1 $(glide novendor)
3737
if: type = cron
3838

39-
# linux/1.10 (mainline): deploy bins, docker dry-run
39+
# linux/1.11 (mainline): deploy bins, docker dry-run
4040
- name: release-dryrun
4141
os: linux
42-
go: "1.10"
42+
go: "1.11"
4343
services: [docker]
4444
script:
4545
- go get github.com/goreleaser/goreleaser
4646
- $GOPATH/bin/goreleaser --skip-publish
4747
if: tag =~ ^v AND fork = false
4848

49-
# linux/1.10 (mainline): deploy bins,docker
49+
# linux/1.11 (mainline): deploy bins,docker
5050
- name: release
5151
os: linux
52-
go: "1.10"
52+
go: "1.11"
5353
services: [docker]
5454
script:
5555
- docker login -u "$DOCKER_USERNAME" -p "$DOCKER_PASSWORD"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ $ curl https://raw.githubusercontent.com/ovrclk/akash/master/godownloader.sh | s
4444

4545
## Dependencies
4646

47-
Akash is developed and tested with [golang 1.8+](https://golang.org/). Building requires a working [golang](https://golang.org/) installation, a properly set `GOPATH`, and `$GOPATH/bin` present in `$PATH`.
47+
Akash is developed and tested with [golang 1.10+](https://golang.org/). Building requires a working [golang](https://golang.org/) installation, a properly set `GOPATH`, and `$GOPATH/bin` present in `$PATH`.
4848

4949
Additional requirements are:
5050

0 commit comments

Comments
 (0)