aboutsummaryrefslogtreecommitdiffhomepage
path: root/kokoro/linux/64-bit/build.sh
diff options
context:
space:
mode:
authorGravatar Matt Kwong <mattkwong@google.com>2017-12-19 11:51:43 -0800
committerGravatar Matt Kwong <mattkwong@google.com>2017-12-19 13:06:09 -0800
commit8ac050fadd7d08eae525a5a227a1e87ea15d57fc (patch)
treebbfdbee24af39cba0b86c4ede603e0466e1b418e /kokoro/linux/64-bit/build.sh
parent860d693cf70f13d823ab8e6f9118d94485fa95bd (diff)
Migrate Jenkins jobs to Kokoro
Diffstat (limited to 'kokoro/linux/64-bit/build.sh')
-rwxr-xr-xkokoro/linux/64-bit/build.sh17
1 files changed, 17 insertions, 0 deletions
diff --git a/kokoro/linux/64-bit/build.sh b/kokoro/linux/64-bit/build.sh
new file mode 100755
index 00000000..48ddbce5
--- /dev/null
+++ b/kokoro/linux/64-bit/build.sh
@@ -0,0 +1,17 @@
+#!/bin/bash
+#
+# This is the top-level script we give to Kokoro as the entry point for
+# running the "pull request" project:
+#
+# This script selects a specific Dockerfile (for building a Docker image) and
+# a script to run inside that image. Then we delegate to the general
+# build_and_run_docker.sh script.
+
+# Change to repo root
+cd $(dirname $0)/../../..
+
+export DOCKERFILE_DIR=kokoro/linux/64-bit
+export DOCKER_RUN_SCRIPT=kokoro/linux/pull_request_in_docker.sh
+export OUTPUT_DIR=testoutput
+export TEST_SET="csharp java_jdk7 javanano_jdk7 java_oracle7 javanano_oracle7 python python_cpp ruby_all javascript golang php_all"
+./kokoro/linux/build_and_run_docker.sh