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/23 17:34:24 UTC

[beam-site] branch mergebot updated (c0ffea9 -> ed1fa3f)

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 c0ffea9  This closes #404
     add b9082bf  Prepare repository for deployment.
     new 3f41d1b  parallelise test
     new ed1fa3f  This closes #405

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/contribution-guide/index.html | 23 ++++++++++++++++++++++-
 3 files changed, 27 insertions(+), 2 deletions(-)

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

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

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 ed1fa3fe92b5221ad169099b76c0bcc61d124d01
Merge: b9082bf 3f41d1b
Author: Mergebot <me...@apache.org>
AuthorDate: Fri Mar 23 10:34:03 2018 -0700

    This closes #405

 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 3f41d1b976bf16a130d22242ae9cd01065acdfc6
Author: Taro Murao <ta...@gmail.com>
AuthorDate: Fri Mar 23 15:26:46 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.