1#!/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# fail on error 11set -e 12 13# Change to repo root 14cd $(dirname $0)/../../.. 15 16export DOCKERHUB_ORGANIZATION=protobuftesting 17# The image of the Dockerfile sha1 is fetched from the organization 18export DOCKERFILE_DIR=kokoro/linux/dockerfile/test/java_stretch 19export DOCKER_RUN_SCRIPT=kokoro/linux/pull_request_in_docker.sh 20export OUTPUT_DIR=testoutput 21export TEST_SET="java_jdk11" 22./kokoro/linux/build_and_run_docker.sh 23