blob: 55ac2449036ef9323409681817942a08f0f4677a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/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:20220711
|