1#!/bin/bash 2# 3# Build file to set up and run tests 4 5set -ex # exit immediately on error 6 7# Change to repo root 8cd $(dirname $0)/../../.. 9 10# Run tests under release docker image. 11export DOCKERFILE_DIR=kokoro/linux/64-bit 12export DOCKER_RUN_SCRIPT=kokoro/linux/pull_request_in_docker.sh 13export OUTPUT_DIR=testoutput 14export TEST_SET="dist_install" 15./kokoro/linux/build_and_run_docker.sh 16