11 lines
113 B
Bash
11 lines
113 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
set -exu -o pipefail
|
||
|
|
cat /VERSION
|
||
|
|
|
||
|
|
cd github/grpc-java
|
||
|
|
bazel build ...
|
||
|
|
|
||
|
|
cd examples
|
||
|
|
bazel build ...
|