diff options
Diffstat (limited to 'kokoro/macos/ruby21')
-rwxr-xr-x | kokoro/macos/ruby21/build.sh | 11 | ||||
-rw-r--r-- | kokoro/macos/ruby21/presubmit.cfg | 5 |
2 files changed, 16 insertions, 0 deletions
diff --git a/kokoro/macos/ruby21/build.sh b/kokoro/macos/ruby21/build.sh new file mode 100755 index 00000000..748ea655 --- /dev/null +++ b/kokoro/macos/ruby21/build.sh @@ -0,0 +1,11 @@ +#!/bin/bash +# +# Build file to set up and run tests + +# Change to repo root +cd $(dirname $0)/../../.. + +# Prepare worker environment to run tests +source kokoro/macos/prepare_build_macos_rc + +./tests.sh ruby21 diff --git a/kokoro/macos/ruby21/presubmit.cfg b/kokoro/macos/ruby21/presubmit.cfg new file mode 100644 index 00000000..489796da --- /dev/null +++ b/kokoro/macos/ruby21/presubmit.cfg @@ -0,0 +1,5 @@ +# Config file for running tests in Kokoro + +# Location of the build script in repository +build_file: "protobuf/kokoro/macos/ruby21/build.sh" +timeout_mins: 1440 |