-
Notifications
You must be signed in to change notification settings - Fork 437
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
855ff2f
commit c74f699
Showing
12 changed files
with
797 additions
and
367 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
version: v1beta1 | ||
build: | ||
roots: | ||
- integration_test/proto | ||
lint: | ||
use: | ||
- DEFAULT | ||
ignore_only: | ||
ENUM_VALUE_PREFIX: | ||
- improbable/grpcweb/test/test.proto | ||
ENUM_ZERO_VALUE_SUFFIX: | ||
- improbable/grpcweb/test/test.proto | ||
FIELD_LOWER_SNAKE_CASE: | ||
- improbable/grpcweb/test/test.proto | ||
PACKAGE_VERSION_SUFFIX: | ||
- improbable/grpcweb/test/test.proto | ||
RPC_REQUEST_RESPONSE_UNIQUE: | ||
- improbable/grpcweb/test/test.proto | ||
RPC_REQUEST_STANDARD_NAME: | ||
- improbable/grpcweb/test/test.proto | ||
RPC_RESPONSE_STANDARD_NAME: | ||
- improbable/grpcweb/test/test.proto | ||
breaking: | ||
use: | ||
- FILE |
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,17 @@ | ||
#!/bin/bash | ||
# Installs buf; used for generating and linting protofiles. | ||
# This script is intended to be run by CI | ||
|
||
set -ex | ||
|
||
if [[ -z "$BUF_VER" ]]; then | ||
echo "BUF_VER environment variable not set" | ||
exit 1 | ||
fi | ||
|
||
curl -sSL \ | ||
https://github.com/bufbuild/buf/releases/download/v${BUF_VER}/buf-$(uname -s)-$(uname -m) \ | ||
-o ./buf && \ | ||
chmod +x ./buf | ||
|
||
echo 'export PATH=$PATH:$PWD' >> $BASH_ENV |
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,21 @@ | ||
#!/bin/bash | ||
# Installs protoc; used for generating JS protobuf stubs. | ||
# This script is intended to be run by CI | ||
|
||
set -ex | ||
|
||
if [[ -z "$PROTOC_VER" ]]; then | ||
echo "PROTOC_VER environment variable not set" | ||
exit 1 | ||
fi | ||
|
||
curl -sSL \ | ||
https://github.com/protocolbuffers/protobuf/releases/download/v${PROTOC_VER}/protoc-${PROTOC_VER}-linux-$(uname -m).zip \ | ||
-o protoc.zip | ||
rm -rf protoc | ||
mkdir -p protoc | ||
unzip protoc.zip -d protoc | ||
rm protoc.zip | ||
chmod +x ./protoc/bin/protoc | ||
|
||
echo 'export PATH=$PATH:$PWD/protoc/bin' >> $BASH_ENV |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.