Skip to content

Commit

Permalink
Add Go 1.15 to CI (#591)
Browse files Browse the repository at this point in the history
Signed-off-by: Waldemar Quevedo <wally@synadia.com>
  • Loading branch information
wallyqs committed Sep 9, 2020
1 parent e8f2b4a commit 42c4036
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
@@ -1,7 +1,7 @@
language: go
go:
- 1.15.x
- 1.14.x
- 1.13.x
env:
- GO111MODULE=off
go_import_path: github.com/nats-io/nats.go
Expand All @@ -20,4 +20,4 @@ before_script:
script:
- go test -i -race ./...
- go test -v -run=TestNoRace -p=1 ./...
- if [[ "$TRAVIS_GO_VERSION" =~ 1.14 ]]; then ./scripts/cov.sh TRAVIS; else go test -race -v -p=1 ./... --failfast; fi
- if [[ "$TRAVIS_GO_VERSION" =~ 1.15 ]]; then ./scripts/cov.sh TRAVIS; else go test -race -v -p=1 ./... --failfast; fi

3 comments on commit 42c4036

@advancedwebdeveloper
Copy link

@advancedwebdeveloper advancedwebdeveloper commented on 42c4036 Sep 16, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@wallyqs , is it possible to form CI pipelines for gollvm ?

Ivan

@wallyqs
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi Ivan, ok I will take a look

@kozlovic
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

But what's the point if we know that this is not going to be able to compile/run tests as you saw? Until (if?) minio has fixes for that, the build is guaranteed to fail. And I am not even sure if there would not be other issues past that point.

Please sign in to comment.