Skip to content

Commit

Permalink
golang: v1.11
Browse files Browse the repository at this point in the history
  • Loading branch information
boz committed Nov 6, 2018
1 parent 9f60f35 commit eded57a
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 15 deletions.
12 changes: 6 additions & 6 deletions .buildkite/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ steps:
automatic: true
plugins:
golang#v2.0.0:
version: "1.10"
version: "1.11"
import: "${AKASH_GO_PACKAGE}"
environment:
- TEST_DELAY_THREAD_START
Expand All @@ -19,7 +19,7 @@ steps:
automatic: true
plugins:
golang#v2.0.0:
version: "1.10"
version: "1.11"
import: "${AKASH_GO_PACKAGE}"
environment:
- TEST_DELAY_THREAD_START
Expand All @@ -37,14 +37,14 @@ steps:
- name: ":man-juggling: integration"
plugins:
golang#v2.0.0:
version: "1.10"
version: "1.11"
import: "${AKASH_GO_PACKAGE}"
command: .buildkite/script/test.sh integration

- name: ":hospital: hygiene checks"
plugins:
golang#v2.0.0:
version: "1.10"
version: "1.11"
import: "${AKASH_GO_PACKAGE}"
command: .buildkite/script/test.sh lint

Expand All @@ -60,13 +60,13 @@ steps:
- TEST_DELAY_THREAD_START
command: .buildkite/script/test.sh test-lite

- name: ":wilted_flower: golang with 1.9"
- name: ":wilted_flower: golang with 1.10"
retry:
automatic: true
branches: master
plugins:
golang#v2.0.0:
version: "1.9"
version: "1.10"
import: "${AKASH_GO_PACKAGE}"
environment:
- TEST_DELAY_THREAD_START
Expand Down
16 changes: 8 additions & 8 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ env:
jobs:
include:

# osx/1.10: tests, integration, image-bins
# osx/1.11: tests, integration, image-bins
- name: test
os: osx
osx_image: xcode9.3beta
go: "1.10"
go: "1.11"
script:
- make build
- make test-vet
Expand All @@ -26,30 +26,30 @@ jobs:
- make image-bins
if: type = cron

# linux/1.10 (mainline): run skipped tests
# linux/1.11 (mainline): run skipped tests
- name: test-skipped
os: linux
go: "1.10"
go: "1.11"
sudo: required
env: TEST_UNSKIP=true
script:
- go test -v -count=1 $(glide novendor)
if: type = cron

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

# linux/1.10 (mainline): deploy bins,docker
# linux/1.11 (mainline): deploy bins,docker
- name: release
os: linux
go: "1.10"
go: "1.11"
services: [docker]
script:
- docker login -u "$DOCKER_USERNAME" -p "$DOCKER_PASSWORD"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ $ curl https://github.com/ovrclk/akash/master/godownloader.sh | s

## Dependencies

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`.
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`.

Additional requirements are:

Expand Down

0 comments on commit eded57a

Please sign in to comment.