xref: /aosp_15_r20/external/cronet/third_party/protobuf/kokoro/docs/trampoline.sh (revision 6777b5387eb2ff775bb5750e3f5d96f37fb7352b)
1#!/bin/bash
2# Copied from https://github.com/googleapis/google-cloud-python/blob/main/.kokoro/trampoline.sh
3
4set -eo pipefail
5
6python3 "${KOKORO_GFILE_DIR}/trampoline_v1.py"  || ret_code=$?
7
8chmod +x ${KOKORO_GFILE_DIR}/trampoline_cleanup.sh
9${KOKORO_GFILE_DIR}/trampoline_cleanup.sh || true
10
11exit ${ret_code}
12