This repository has been archived by the owner on Oct 12, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 89
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Test tip on travis * Only test if godef to GOROOT matches path * Install all instead of ... go1.10 introduces the cache directory. So now objects will only appear in `pkg` if they are explicitly installed. Previous versions of go would create entries for the transitive dependencies. So for our vendor tests running `go install -i ...` would not create a corresponding file in `pkg` for the vendored packages since `...` does not list vendor. Using `all` instead does include the vendored pkg, so will include the vendored pkgs. This will likely have wider effects on go tooling that rely on pkg. Already filed nsf/gocode#500 for gocode. * Handle differing diagnostic output * Correctly remove range in def test on windows
- Loading branch information
1 parent
0cbfbb7
commit 20886c7
Showing
3 changed files
with
36 additions
and
9 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,6 +3,7 @@ language: go | |
go: | ||
- 1.8.x | ||
- 1.9.x | ||
- tip | ||
|
||
go_import_path: github.com/sourcegraph/go-langserver | ||
|
||
|
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