-
Notifications
You must be signed in to change notification settings - Fork 748
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #116 from mogren/master
Initial travis CI integration
- Loading branch information
Showing
9 changed files
with
57 additions
and
277 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,3 +3,6 @@ aws-cni | |
verify-aws | ||
verify-network | ||
*~ | ||
.idea/ | ||
*.iml | ||
.DS_Store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# This is how to tell Travis to use the fast container-based test | ||
# runner instead of the slow VM-based one. | ||
sudo: false | ||
|
||
language: go | ||
|
||
# Only the last two Go releases are supported by the Go team with security updates. | ||
# Any older versions are considered deprecated. | ||
go: | ||
- "1.10.x" | ||
- "1.9.x" | ||
|
||
# Only clone the most recent commit. | ||
git: | ||
depth: 1 | ||
|
||
go_import_path: github.com/aws/amazon-vpc-cni-k8s | ||
|
||
# Install needed tools | ||
install: | ||
- go get -u golang.org/x/lint/golint | ||
|
||
# Tests to run | ||
script: | ||
- make build-linux | ||
- make lint | ||
- make vet | ||
- make unit-test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.