1ffe3c632Sopenharmony_ci#!/bin/bash 2ffe3c632Sopenharmony_ci# 3ffe3c632Sopenharmony_ci# This is the top-level script we give to Kokoro as the entry point for 4ffe3c632Sopenharmony_ci# running the "pull request" project: 5ffe3c632Sopenharmony_ci# 6ffe3c632Sopenharmony_ci# This script selects a specific Dockerfile (for building a Docker image) and 7ffe3c632Sopenharmony_ci# a script to run inside that image. Then we delegate to the general 8ffe3c632Sopenharmony_ci# build_and_run_docker.sh script. 9ffe3c632Sopenharmony_ci 10ffe3c632Sopenharmony_ci# Change to repo root 11ffe3c632Sopenharmony_cicd $(dirname $0)/../../.. 12ffe3c632Sopenharmony_ci 13ffe3c632Sopenharmony_ciexport DOCKERHUB_ORGANIZATION=protobuftesting 14ffe3c632Sopenharmony_ciexport DOCKERFILE_DIR=kokoro/linux/dockerfile/test/python35 15ffe3c632Sopenharmony_ciexport DOCKER_RUN_SCRIPT=kokoro/linux/pull_request_in_docker.sh 16ffe3c632Sopenharmony_ciexport OUTPUT_DIR=testoutput 17ffe3c632Sopenharmony_ciexport TEST_SET="python35_cpp" 18ffe3c632Sopenharmony_ci./kokoro/linux/build_and_run_docker.sh 19