Skip to content

Commit

Permalink
Update CircleCI Go versions. (prometheus#147)
Browse files Browse the repository at this point in the history
* Add Go 1.12.
* Remove Go 1.10.
* Cleanup old test methods.

Signed-off-by: Ben Kochie <superq@gmail.com>
  • Loading branch information
SuperQ authored Mar 22, 2019
1 parent 40f3c57 commit 55ae3d9
Showing 1 changed file with 9 additions and 16 deletions.
25 changes: 9 additions & 16 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,9 @@ commands:
default:
steps:
- run: make style check_license vet test staticcheck
no-style:
steps:
- run: make check_license vet test staticcheck
no-test:
steps:
- run: make style check_license vet staticcheck
no-style-test:
steps:
- run: go get -t ./...
- run: make check_license vet staticcheck

jobs:
test:
Expand All @@ -38,23 +31,23 @@ workflows:
version: 2
procfs:
jobs:
- test:
command: no-style-test
name: linux-1-10
os: linux
go_version: "1.10"
- test:
command: default
name: linux-1-11
os: linux
go_version: "1.11"
- test:
command: no-style-test
name: windows-1-10
os: windows
go_version: "1.10"
command: default
name: linux-1-12
os: linux
go_version: "1.12"
- test:
command: no-test
name: windows-1-11
os: windows
go_version: "1.11"
- test:
command: no-test
name: windows-1-12
os: windows
go_version: "1.12"

0 comments on commit 55ae3d9

Please sign in to comment.