forked from tw4dl/libretto
-
Notifications
You must be signed in to change notification settings - Fork 7
MRPHS-3897: Rebasing/Upgrading libretto #61
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
Open
avnish30jn
wants to merge
23
commits into
apporbit:master
Choose a base branch
from
avnish30jn:rebase_libretto
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
3c71796
Update .travis.yml for Go 1.8. Add unused linter and gofmt -s.
e05f218
Update oauth2 dep
0c28269
Fix staticcheck bugs.
a32e5ca
Implement rate limiter to replace leaking ticker in aws/vm.go
f7394fb
Revendor using dep tool
f62f4b8
Improve travis runs with cleaner logs and testing go tip
f72d316
Fix broken Markdown headings
bryant1410 a02ccd5
Fix SSH close channel race condition
50cb5f1
Fixed the hanging bug on ssh keepAlive
46a64c0
Update all deps
149b20e
Fix bad go get command in README
ryboe d74c82b
Update all deps
ryboe 0dc5cd2
Log out from vCenter sessions
e1cd1cf
Dep updates for June 26, 2017
ryboe 33020fa
Update deps for July 14th.
7853eb0
Don't load entire file into mem during ssh Upload
4589a27
Don't build and test on 386 arch in Travis
927c3b7
Revert "Don't load entire file into memory during uploads over SSH"
4901d3e
Require ssh.Upload caller to pass file size
793501c
Fix string -> bool bug in Azure template
ryboe e49d141
Handle Azure deployment error
olegshaldybin 4a5f79f
Update deps for Sep 12 2017
ryboe 3bf12f9
Rebase with apcera/libretto and pulled in vendor changes
avnish30jn File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 |
|---|---|---|
| @@ -1,28 +1,27 @@ | ||
| language: go | ||
|
|
||
| go: | ||
| - 1.6 | ||
| - 1.7 | ||
| - 1.9 | ||
| - tip | ||
|
|
||
| os: | ||
| - linux | ||
| - osx | ||
|
|
||
| env: | ||
| matrix: | ||
| - BUILD_GOARCH=amd64 | ||
| - BUILD_GOARCH=386 | ||
| matrix: | ||
| allow_failures: | ||
| - go: tip | ||
| fast_finish: true # don't wait for tip tests to finish before marking build "succeeded" | ||
|
|
||
| before_install: | ||
| - go get -u honnef.co/go/simple/cmd/gosimple | ||
|
|
||
| # don't go get deps. will only build with code in vendor directory. | ||
| # skip the install step. don't `go get` deps. only build with code in vendor/ | ||
| install: true | ||
|
|
||
| before_script: | ||
| - go get honnef.co/go/tools/cmd/megacheck | ||
| - GO_FILES=$(find . -iname '*.go' -type f | grep -v /vendor/) | ||
|
|
||
| script: | ||
| # pkgs avoids testing anything in vendor/ | ||
| - pkgs=$(go list ./... | grep -v /vendor/) | ||
| - go vet $pkgs | ||
| - go test -v -race $pkgs | ||
| - gosimple $pkgs | ||
| - test -z $(gofmt -s -l $GO_FILES) | ||
| - go vet ./... | ||
| - megacheck ./... | ||
| - go test -v -race $PKGS | ||
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains hidden or 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,40 @@ | ||
|
|
||
| [[constraint]] | ||
| name = "github.com/Azure/azure-sdk-for-go" | ||
| version = "10.3.1-beta" | ||
|
|
||
| [[constraint]] | ||
| name = "github.com/Azure/go-autorest" | ||
| version = "8.3.1" | ||
|
|
||
| [[constraint]] | ||
| branch = "master" | ||
| name = "github.com/apcera/util" | ||
|
|
||
| [[constraint]] | ||
| name = "github.com/aws/aws-sdk-go" | ||
| version = "1.10.43" | ||
|
|
||
| [[constraint]] | ||
| branch = "master" | ||
| name = "github.com/gophercloud/gophercloud" | ||
|
|
||
| [[constraint]] | ||
| branch = "master" | ||
| name = "github.com/pyr/egoscale" | ||
|
|
||
| [[constraint]] | ||
| branch = "master" | ||
| name = "github.com/vmware/govmomi" | ||
|
|
||
| [[constraint]] | ||
| branch = "master" | ||
| name = "golang.org/x/crypto" | ||
|
|
||
| [[constraint]] | ||
| branch = "master" | ||
| name = "golang.org/x/oauth2" | ||
|
|
||
| [[constraint]] | ||
| branch = "master" | ||
| name = "google.golang.org/api" |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is go1.9+ mandatory or recommended?
i.e. Ensure no build failure in go 1.7 enviornment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
go1.9+ is recommended and build is not failing with go 1.7.