From 6156af10e8f9f7f3d69df9adef232a77b27d6fb2 Mon Sep 17 00:00:00 2001 From: Matt Kwong Date: Thu, 1 Jun 2017 11:46:43 -0700 Subject: Add MacOS and Linux tests to Kokoro --- kokoro/macos/cpp/build.sh | 11 ++++++++ kokoro/macos/cpp/presubmit.cfg | 5 ++++ kokoro/macos/cpp_distcheck/build.sh | 11 ++++++++ kokoro/macos/cpp_distcheck/presubmit.cfg | 5 ++++ kokoro/macos/javascript/build.sh | 11 ++++++++ kokoro/macos/javascript/presubmit.cfg | 5 ++++ kokoro/macos/jruby/build.sh | 11 ++++++++ kokoro/macos/jruby/presubmit.cfg | 5 ++++ .../objectivec_cocoapods_integration/build.sh | 11 ++++++++ .../objectivec_cocoapods_integration/presubmit.cfg | 5 ++++ kokoro/macos/objectivec_ios_debug/build.sh | 11 ++++++++ kokoro/macos/objectivec_ios_debug/presubmit.cfg | 5 ++++ kokoro/macos/objectivec_ios_release/build.sh | 11 ++++++++ kokoro/macos/objectivec_ios_release/presubmit.cfg | 5 ++++ kokoro/macos/objectivec_osx/build.sh | 11 ++++++++ kokoro/macos/objectivec_osx/presubmit.cfg | 5 ++++ kokoro/macos/php5.6_mac/build.sh | 11 ++++++++ kokoro/macos/php5.6_mac/presubmit.cfg | 5 ++++ kokoro/macos/php7.0_mac/build.sh | 11 ++++++++ kokoro/macos/php7.0_mac/presubmit.cfg | 5 ++++ kokoro/macos/prepare_build_macos_rc | 33 ++++++++++++++++++++++ kokoro/macos/python/build.sh | 11 ++++++++ kokoro/macos/python/presubmit.cfg | 5 ++++ kokoro/macos/python_cpp/build.sh | 12 ++++++++ kokoro/macos/python_cpp/presubmit.cfg | 5 ++++ kokoro/macos/ruby21/build.sh | 11 ++++++++ kokoro/macos/ruby21/presubmit.cfg | 5 ++++ kokoro/macos/ruby22/build.sh | 11 ++++++++ kokoro/macos/ruby22/presubmit.cfg | 5 ++++ 29 files changed, 258 insertions(+) create mode 100755 kokoro/macos/cpp/build.sh create mode 100644 kokoro/macos/cpp/presubmit.cfg create mode 100755 kokoro/macos/cpp_distcheck/build.sh create mode 100644 kokoro/macos/cpp_distcheck/presubmit.cfg create mode 100755 kokoro/macos/javascript/build.sh create mode 100644 kokoro/macos/javascript/presubmit.cfg create mode 100755 kokoro/macos/jruby/build.sh create mode 100644 kokoro/macos/jruby/presubmit.cfg create mode 100755 kokoro/macos/objectivec_cocoapods_integration/build.sh create mode 100644 kokoro/macos/objectivec_cocoapods_integration/presubmit.cfg create mode 100755 kokoro/macos/objectivec_ios_debug/build.sh create mode 100644 kokoro/macos/objectivec_ios_debug/presubmit.cfg create mode 100755 kokoro/macos/objectivec_ios_release/build.sh create mode 100644 kokoro/macos/objectivec_ios_release/presubmit.cfg create mode 100755 kokoro/macos/objectivec_osx/build.sh create mode 100644 kokoro/macos/objectivec_osx/presubmit.cfg create mode 100755 kokoro/macos/php5.6_mac/build.sh create mode 100644 kokoro/macos/php5.6_mac/presubmit.cfg create mode 100755 kokoro/macos/php7.0_mac/build.sh create mode 100644 kokoro/macos/php7.0_mac/presubmit.cfg create mode 100755 kokoro/macos/prepare_build_macos_rc create mode 100755 kokoro/macos/python/build.sh create mode 100644 kokoro/macos/python/presubmit.cfg create mode 100755 kokoro/macos/python_cpp/build.sh create mode 100644 kokoro/macos/python_cpp/presubmit.cfg create mode 100755 kokoro/macos/ruby21/build.sh create mode 100644 kokoro/macos/ruby21/presubmit.cfg create mode 100755 kokoro/macos/ruby22/build.sh create mode 100644 kokoro/macos/ruby22/presubmit.cfg (limited to 'kokoro/macos') diff --git a/kokoro/macos/cpp/build.sh b/kokoro/macos/cpp/build.sh new file mode 100755 index 00000000..bae2ebbc --- /dev/null +++ b/kokoro/macos/cpp/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 cpp diff --git a/kokoro/macos/cpp/presubmit.cfg b/kokoro/macos/cpp/presubmit.cfg new file mode 100644 index 00000000..4bea1cbb --- /dev/null +++ b/kokoro/macos/cpp/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/cpp/build.sh" +timeout_mins: 1440 diff --git a/kokoro/macos/cpp_distcheck/build.sh b/kokoro/macos/cpp_distcheck/build.sh new file mode 100755 index 00000000..d729b63d --- /dev/null +++ b/kokoro/macos/cpp_distcheck/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 cpp_distcheck diff --git a/kokoro/macos/cpp_distcheck/presubmit.cfg b/kokoro/macos/cpp_distcheck/presubmit.cfg new file mode 100644 index 00000000..89441bcc --- /dev/null +++ b/kokoro/macos/cpp_distcheck/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/cpp_distcheck/build.sh" +timeout_mins: 1440 diff --git a/kokoro/macos/javascript/build.sh b/kokoro/macos/javascript/build.sh new file mode 100755 index 00000000..016832a3 --- /dev/null +++ b/kokoro/macos/javascript/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 javascript diff --git a/kokoro/macos/javascript/presubmit.cfg b/kokoro/macos/javascript/presubmit.cfg new file mode 100644 index 00000000..b478cc19 --- /dev/null +++ b/kokoro/macos/javascript/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/javascript/build.sh" +timeout_mins: 1440 diff --git a/kokoro/macos/jruby/build.sh b/kokoro/macos/jruby/build.sh new file mode 100755 index 00000000..c82eaebf --- /dev/null +++ b/kokoro/macos/jruby/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 jruby diff --git a/kokoro/macos/jruby/presubmit.cfg b/kokoro/macos/jruby/presubmit.cfg new file mode 100644 index 00000000..f1310fd3 --- /dev/null +++ b/kokoro/macos/jruby/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/jruby/build.sh" +timeout_mins: 1440 diff --git a/kokoro/macos/objectivec_cocoapods_integration/build.sh b/kokoro/macos/objectivec_cocoapods_integration/build.sh new file mode 100755 index 00000000..f96d2899 --- /dev/null +++ b/kokoro/macos/objectivec_cocoapods_integration/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 objectivec_cocoapods_integration diff --git a/kokoro/macos/objectivec_cocoapods_integration/presubmit.cfg b/kokoro/macos/objectivec_cocoapods_integration/presubmit.cfg new file mode 100644 index 00000000..952874ed --- /dev/null +++ b/kokoro/macos/objectivec_cocoapods_integration/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/objectivec_cocoapods_integration/build.sh" +timeout_mins: 1440 diff --git a/kokoro/macos/objectivec_ios_debug/build.sh b/kokoro/macos/objectivec_ios_debug/build.sh new file mode 100755 index 00000000..1055d72e --- /dev/null +++ b/kokoro/macos/objectivec_ios_debug/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 objectivec_ios_debug diff --git a/kokoro/macos/objectivec_ios_debug/presubmit.cfg b/kokoro/macos/objectivec_ios_debug/presubmit.cfg new file mode 100644 index 00000000..473d5455 --- /dev/null +++ b/kokoro/macos/objectivec_ios_debug/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/objectivec_ios_debug/build.sh" +timeout_mins: 1440 diff --git a/kokoro/macos/objectivec_ios_release/build.sh b/kokoro/macos/objectivec_ios_release/build.sh new file mode 100755 index 00000000..76ce3ba0 --- /dev/null +++ b/kokoro/macos/objectivec_ios_release/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 objectivec_ios_release diff --git a/kokoro/macos/objectivec_ios_release/presubmit.cfg b/kokoro/macos/objectivec_ios_release/presubmit.cfg new file mode 100644 index 00000000..3cbfb685 --- /dev/null +++ b/kokoro/macos/objectivec_ios_release/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/objectivec_ios_release/build.sh" +timeout_mins: 1440 diff --git a/kokoro/macos/objectivec_osx/build.sh b/kokoro/macos/objectivec_osx/build.sh new file mode 100755 index 00000000..000be274 --- /dev/null +++ b/kokoro/macos/objectivec_osx/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 objectivec_osx diff --git a/kokoro/macos/objectivec_osx/presubmit.cfg b/kokoro/macos/objectivec_osx/presubmit.cfg new file mode 100644 index 00000000..41bd46aa --- /dev/null +++ b/kokoro/macos/objectivec_osx/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/objectivec_osx/build.sh" +timeout_mins: 1440 diff --git a/kokoro/macos/php5.6_mac/build.sh b/kokoro/macos/php5.6_mac/build.sh new file mode 100755 index 00000000..74878898 --- /dev/null +++ b/kokoro/macos/php5.6_mac/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 php5.6_mac diff --git a/kokoro/macos/php5.6_mac/presubmit.cfg b/kokoro/macos/php5.6_mac/presubmit.cfg new file mode 100644 index 00000000..ff345e9f --- /dev/null +++ b/kokoro/macos/php5.6_mac/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/php5.6_mac/build.sh" +timeout_mins: 1440 diff --git a/kokoro/macos/php7.0_mac/build.sh b/kokoro/macos/php7.0_mac/build.sh new file mode 100755 index 00000000..e5a37e30 --- /dev/null +++ b/kokoro/macos/php7.0_mac/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 php7.0_mac diff --git a/kokoro/macos/php7.0_mac/presubmit.cfg b/kokoro/macos/php7.0_mac/presubmit.cfg new file mode 100644 index 00000000..c2c18119 --- /dev/null +++ b/kokoro/macos/php7.0_mac/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/php7.0_mac/build.sh" +timeout_mins: 1440 diff --git a/kokoro/macos/prepare_build_macos_rc b/kokoro/macos/prepare_build_macos_rc new file mode 100755 index 00000000..2b9f4df2 --- /dev/null +++ b/kokoro/macos/prepare_build_macos_rc @@ -0,0 +1,33 @@ +#!/bin/bash +# +# This script sets up a Kokoro MacOS worker for running Protobuf tests + +## +# Select Xcode version + +export DEVELOPER_DIR=/Applications/Xcode_8.1.app/Contents/Developer + +## +# Select C/C++ compilers + +export CC=gcc +export CXX=g++ + +## +# Install Brew and core softwares + +ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" +brew tap homebrew/homebrew-php +brew install autoconf automake ccache cmake gflags gpg gpg2 libtool maven node pcre php56 ruby wget + +## +# Install Tox + +sudo pip install tox==2.4.1 + +## +# Install RVM + +gpg2 --keyserver hkp://keys.gnupg.net --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3 +command curl -sSL https://rvm.io/mpapis.asc | gpg2 --import - +curl -sSL https://get.rvm.io | bash -s stable --ruby diff --git a/kokoro/macos/python/build.sh b/kokoro/macos/python/build.sh new file mode 100755 index 00000000..6b17b954 --- /dev/null +++ b/kokoro/macos/python/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 python diff --git a/kokoro/macos/python/presubmit.cfg b/kokoro/macos/python/presubmit.cfg new file mode 100644 index 00000000..0fc8b503 --- /dev/null +++ b/kokoro/macos/python/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/python/build.sh" +timeout_mins: 1440 diff --git a/kokoro/macos/python_cpp/build.sh b/kokoro/macos/python_cpp/build.sh new file mode 100755 index 00000000..cb53def9 --- /dev/null +++ b/kokoro/macos/python_cpp/build.sh @@ -0,0 +1,12 @@ +#!/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 +g++ --version + +./tests.sh python_cpp diff --git a/kokoro/macos/python_cpp/presubmit.cfg b/kokoro/macos/python_cpp/presubmit.cfg new file mode 100644 index 00000000..22f4a0e4 --- /dev/null +++ b/kokoro/macos/python_cpp/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/python_cpp/build.sh" +timeout_mins: 1440 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 diff --git a/kokoro/macos/ruby22/build.sh b/kokoro/macos/ruby22/build.sh new file mode 100755 index 00000000..5c4de429 --- /dev/null +++ b/kokoro/macos/ruby22/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 ruby22 diff --git a/kokoro/macos/ruby22/presubmit.cfg b/kokoro/macos/ruby22/presubmit.cfg new file mode 100644 index 00000000..d2705441 --- /dev/null +++ b/kokoro/macos/ruby22/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/ruby22/build.sh" +timeout_mins: 1440 -- cgit v1.2.3