blob: 2903a2d9c2dd414e62d81b5d9955648e8c392bb6 [file] [log] [blame]
Bu Sun Kimc01cd6e2021-10-15 11:24:49 -06001#!/bin/bash
2#
3# This is the top-level script we give to Kokoro as the entry point for
4# running the "pull request" project:
5#
6# This script selects a specific Dockerfile (for building a Docker image) and
7# a script to run inside that image. Then we delegate to the general
8# build_and_run_docker.sh script.
9
10# Change to repo root
11cd $(dirname $0)/../../..
12
13export DOCKERHUB_ORGANIZATION=protobuftesting
14export DOCKERFILE_DIR=kokoro/linux/dockerfile/test/python310
15export DOCKER_RUN_SCRIPT=kokoro/linux/pull_request_in_docker.sh
16export OUTPUT_DIR=testoutput
17export TEST_SET="python310_cpp"
18./kokoro/linux/build_and_run_docker.sh