You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
400 B
14 lines
400 B
#!/bin/bash |
|
|
|
set -e |
|
|
|
export BAZEL_ROOT=/bazel_root |
|
|
|
docker container run \ |
|
--env KOKORO_ROOT --env KOKORO_ARTIFACTS_DIR --env KOKORO_PIPER_DIR --env BAZEL_ROOT \ |
|
--volume ${KOKORO_ROOT}:${KOKORO_ROOT} \ |
|
--tmpfs ${BAZEL_ROOT}:exec \ |
|
--workdir ${KOKORO_ROOT} \ |
|
--ipc=host \ |
|
--entrypoint ${KOKORO_ARTIFACTS_DIR}/github/googleapis/.kokoro/build.sh \ |
|
gcr.io/gapic-images/googleapis:20230531
|
|
|