You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by me...@apache.org on 2018/03/21 05:32:46 UTC

[beam-site] branch mergebot updated (b706197 -> a57c91a)

This is an automated email from the ASF dual-hosted git repository.

mergebot-role pushed a change to branch mergebot
in repository https://gitbox.apache.org/repos/asf/beam-site.git.


    from b706197  This closes #399
     add 7e6ecc9  Prepare repository for deployment.
     new 2ceb407  parallelise test
     new a57c91a  This closes #395

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 README.md                                          |  2 ++
 Rakefile                                           |  4 ++-
 content/contribute/release-guide/index.html        |  6 ++--
 .../documentation/sdks/python-custom-io/index.html |  5 ++-
 .../get-started/mobile-gaming-example/index.html   | 39 ++++++----------------
 content/get-started/support/index.html             |  3 +-
 6 files changed, 24 insertions(+), 35 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
mergebot-role@apache.org.

[beam-site] 02/02: This closes #395

Posted by me...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

mergebot-role pushed a commit to branch mergebot
in repository https://gitbox.apache.org/repos/asf/beam-site.git

commit a57c91a274074549ba5fc98864081a6d2717b44c
Merge: 7e6ecc9 2ceb407
Author: Mergebot <me...@apache.org>
AuthorDate: Tue Mar 20 22:32:29 2018 -0700

    This closes #395

 README.md | 2 ++
 Rakefile  | 4 +++-
 2 files changed, 5 insertions(+), 1 deletion(-)

-- 
To stop receiving notification emails like this one, please contact
mergebot-role@apache.org.

[beam-site] 01/02: parallelise test

Posted by me...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

mergebot-role pushed a commit to branch mergebot
in repository https://gitbox.apache.org/repos/asf/beam-site.git

commit 2ceb4072123e28ea7cb053dea48b37829e4c4b1b
Author: Taro Murao <ta...@gmail.com>
AuthorDate: Wed Feb 28 15:16:38 2018 +0100

    parallelise test
---
 README.md | 2 ++
 Rakefile  | 4 +++-
 2 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/README.md b/README.md
index a61dc2b..b0e00a9 100644
--- a/README.md
+++ b/README.md
@@ -21,6 +21,8 @@ This repository contains:
 
 ### Setup
 
+You need Ruby version >= 2.2.0 to build the project.
+
 Install [Ruby Gems](https://rubygems.org/pages/download), a package management framework for Ruby.
 
 Install [Bundler](http://bundler.io/v1.3/rationale.html), which  we use to specify dependencies and ensure
diff --git a/Rakefile b/Rakefile
index 1c858cc..605ed5b 100644
--- a/Rakefile
+++ b/Rakefile
@@ -1,5 +1,6 @@
 require 'fileutils'
 require 'html-proofer'
+require 'etc'
 
 task :test do
   FileUtils.rm_rf('./.testcontent')
@@ -10,6 +11,7 @@ task :test do
       :connecttimeout => 40 },
     :allow_hash_href => true,
     :check_html => true,
-    :file_ignore => [/javadoc/, /v2/, /pydoc/]
+    :file_ignore => [/javadoc/, /v2/, /pydoc/],
+    :parallel => { :in_processes => Etc.nprocessors },
     }).run
 end

-- 
To stop receiving notification emails like this one, please contact
mergebot-role@apache.org.