diff options
author | Carlos O'Ryan <coryan@users.noreply.github.com> | 2019-10-16T21·26-0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-16T21·26-0400 |
commit | c1d1b77f3040dc58cec174b83e57c6ba3078552d (patch) | |
tree | 59a0a7cea95747b4f05270bc0265292489976f0a /ci/test-install/compile-test-projects.sh | |
parent | 3b7a52d9f799d35244a91aca5b576d20a831b88d (diff) |
feat: upgrade googleapis and bigquery protos (#24)
Diffstat (limited to 'ci/test-install/compile-test-projects.sh')
-rwxr-xr-x | ci/test-install/compile-test-projects.sh | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/ci/test-install/compile-test-projects.sh b/ci/test-install/compile-test-projects.sh index 12487ef54862..47d612833eda 100755 --- a/ci/test-install/compile-test-projects.sh +++ b/ci/test-install/compile-test-projects.sh @@ -19,7 +19,15 @@ set -eu -# For bigtable protos +# For BigQuery protos +cp -R /home/build/cpp-cmakefiles/ci/test-install/bigquery \ + /home/build/test-install-bigquery +cd /home/build/test-install-bigquery +cmake -H. -Bcmake-out +cmake --build cmake-out -- -j "$(nproc)" +cmake-out/utilize-googleapis + +# For Bigtable protos cp -R /home/build/cpp-cmakefiles/ci/test-install/bigtable \ /home/build/test-install-bigtable cd /home/build/test-install-bigtable |