#!/bin/bash## This is the script that runs inside Docker, once the image has been built,# to execute all tests for the "pull request" project.WORKSPACE_BASE=`pwd`MY_DIR="$(dirname"$0")"
BUILD_DIR=/tmp/protobufset-e# exit immediately on errorset-x# display all commands# The protobuf repository is mounted into our Docker image, but read-only.# We clone into a directory inside Docker (this is faster than cp).rm-rf$BUILD_DIRmkdir-p$BUILD_DIRcd$BUILD_DIR