Skip to content

Commit

Permalink
Test with go1.12rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
dnephin committed Feb 13, 2019
1 parent 8760d08 commit e458a7a
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,26 @@ jobs:
- store_test_results:
path: junit/

test-golang-1.12:
working_directory: /work
docker: [{image: 'docker:17.06-git'}]
steps:
- checkout
- setup_remote_docker
- run:
name: "Unit Test GO 1.12"
command: |
scripts/ci/test 1.12rc1-alpine
mkdir -p junit/gotest
docker cp \
test-$CIRCLE_BUILD_NUM:/go/src/gotest.tools/gotestsum/junit.xml \
junit/gotest/junit.xml
- store_test_results:
path: junit/

release:
docker: [{image: 'circleci/golang:1.10'}]
docker: [{image: 'circleci/golang:1.11'}]
working_directory: /go/src/gotest.tools/gotestsum
steps:
- checkout
Expand All @@ -86,6 +104,7 @@ workflows:
- lint
- test-golang-1.10
- test-golang-1.11
- test-golang-1.12
- release:
filters:
tags: {only: '/v[0-9]+(\.[0-9]+)*/'}
Expand Down

0 comments on commit e458a7a

Please sign in to comment.