build.sh 627 B

123456789101112131415161718
  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. # Change to repo root
  10. cd $(dirname $0)/../../..
  11. export DOCKERHUB_ORGANIZATION=protobuftesting
  12. export DOCKERFILE_DIR=kokoro/linux/dockerfile/test/python39
  13. export DOCKER_RUN_SCRIPT=kokoro/linux/pull_request_in_docker.sh
  14. export OUTPUT_DIR=testoutput
  15. export TEST_SET="python39_cpp"
  16. ./kokoro/linux/build_and_run_docker.sh