Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove duplicate go version #2517

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
dist: xenial

language: go
go: "1.12.x"

git:
submodules: false
Expand All @@ -10,7 +11,6 @@ go_import_path: github.com/GoogleContainerTools/skaffold
jobs:
include:
- os: linux
go: "1.12.x"
env:
- TEST_TYPE=unit # this is not used, just purely for nice UI distinction on Travis
script:
Expand All @@ -19,7 +19,6 @@ jobs:
after_success:
- bash <(curl -s https://codecov.io/bash)
- os: osx
go: "1.12.x"
env:
- TEST_TYPE=unit # this is not used, just purely for nice UI distinction on Travis
script:
Expand All @@ -28,14 +27,12 @@ jobs:
after_success:
- bash <(curl -s https://codecov.io/bash)
- os: windows
go: "1.12.x"
env:
- TEST_TYPE=unit # this is not used, just purely for nice UI distinction on Travis
script:
- go build -o out/skaffold.exe cmd/skaffold/skaffold.go
- go test -short -timeout 60s ./...
- os: linux
go: "1.12.x"
env:
- TEST_TYPE=integration # this is not used, just purely for nice UI distinction on Travis
before_install:
Expand Down