This repository has been archived by the owner on Apr 3, 2023. It is now read-only.
forked from lyft/protoc-gen-star
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove protoc-gen-go dependency (lyft#30)
* Removal of Plugins * protoc-gen-debug + a bunch of testdata * - Gatherer + AST graph parser * Move some isolated Go-specific stuff * SourceCodeInfo * WKTs * Imports * Move go specific stuff into subpackage * Mock Debugger * Bye PGGo * Buncha tests… * Generator to use new AST + workflows * Update module interface * Update persister * proto related helpers * update example plugin * Readme + Travis
- Loading branch information
Showing
156 changed files
with
4,610 additions
and
4,950 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 |
---|---|---|
@@ -1,5 +1,13 @@ | ||
# vendored code | ||
vendor/ | ||
testdata/generated/ | ||
|
||
# binaries | ||
bin/ | ||
|
||
# coverage reports | ||
cover.* | ||
|
||
|
||
testdata/generated/ | ||
**/*.pb.go | ||
**/code_generator_request.pb.bin |
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 |
---|---|---|
@@ -1,15 +1,21 @@ | ||
language: go | ||
go: "1.10" | ||
go: "1.11" | ||
|
||
env: | ||
global: | ||
- GLIDE_VER="v0.13.1" | ||
- GLIDE_ARCH="linux-amd64" | ||
matrix: | ||
- PROTOC_VER="3.5.1" | ||
- PROTOC_VER="3.6.1" | ||
|
||
before_install: | ||
- mkdir -p $GOPATH/bin | ||
- wget "https://github.com/Masterminds/glide/releases/download/${GLIDE_VER}/glide-${GLIDE_VER}-${GLIDE_ARCH}.tar.gz" -O /tmp/glide.tar.gz | ||
- wget "https://github.com/Masterminds/glide/releases/download/${GLIDE_VER}/glide-${GLIDE_VER}-linux-amd64.tar.gz" -O /tmp/glide.tar.gz | ||
- tar -xvf /tmp/glide.tar.gz --strip-components 1 -C ${GOPATH}/bin | ||
- wget "https://github.com/protocolbuffers/protobuf/releases/download/v${PROTOC_VER}/protoc-${PROTOC_VER}-linux-x86_64.zip" -O /tmp/protoc.zip | ||
- unzip /tmp/protoc.zip -d /tmp | ||
- sudo mv /tmp/bin/protoc /usr/local/bin/protoc | ||
- sudo mv /tmp/include/google /usr/local/include/google | ||
|
||
install: make install | ||
install: make testdata | ||
script: make lint tests |
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
Oops, something went wrong.