You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwhisk.apache.org by dg...@apache.org on 2023/01/15 21:33:44 UTC

[openwhisk-website] branch debug-jenkins updated (1ec3732 -> 0646ddf)

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

dgrove pushed a change to branch debug-jenkins
in repository https://gitbox.apache.org/repos/asf/openwhisk-website.git


 discard 1ec3732  debug
 discard 4164bf2  try rbenv
 discard 93952bb  debugging
 discard 23e8e4e  try somee more
 discard 4e456df  source rvm init script
 discard ea3203f  list ruby versions
 discard 5b38f5f  print ruby version
     add 390b0ae  remove travis from required checks for merging PRs (#503)
     new 1c1d5d8  print ruby version
     new b2b4531  list ruby versions
     new d28b9d5  source rvm init script
     new b9f520a  try somee more
     new 9843cdd  debugging
     new 3eafb6d  try rbenv
     new 0646ddf  debug

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (1ec3732)
            \
             N -- N -- N   refs/heads/debug-jenkins (0646ddf)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 7 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:
 .asf.yaml | 2 --
 1 file changed, 2 deletions(-)


[openwhisk-website] 04/07: try somee more

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

dgrove pushed a commit to branch debug-jenkins
in repository https://gitbox.apache.org/repos/asf/openwhisk-website.git

commit b9f520a1b9b00cab9126feb334619e2ba4d755f9
Author: David Grove <gr...@us.ibm.com>
AuthorDate: Fri Sep 2 17:03:28 2022 -0400

    try somee more
---
 tools/jenkins/website_build.groovy | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/jenkins/website_build.groovy b/tools/jenkins/website_build.groovy
index 809f456..7073a75 100644
--- a/tools/jenkins/website_build.groovy
+++ b/tools/jenkins/website_build.groovy
@@ -13,7 +13,7 @@ node("git-websites") {
     export RUBY_PATH=${WORKSPACE}/shared/.rvm
     export GEM_HOME=${RUBY_PATH}/gems
     curl -sSL https://get.rvm.io | bash -s -- --path ${RUBY_PATH}
-    source ${RUBY_PATH}/scripts/rvm
+    . ${RUBY_PATH}/scripts/rvm
     rvm list known 
     ruby -v 
     mkdir -p ${GEM_HOME}/gems


[openwhisk-website] 06/07: try rbenv

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

dgrove pushed a commit to branch debug-jenkins
in repository https://gitbox.apache.org/repos/asf/openwhisk-website.git

commit 3eafb6d944396ef8aed951c5bdcc4f0dd4af352c
Author: David Grove <gr...@us.ibm.com>
AuthorDate: Fri Sep 2 17:38:23 2022 -0400

    try rbenv
---
 tools/jenkins/website_build.groovy | 14 ++++++++++----
 1 file changed, 10 insertions(+), 4 deletions(-)

diff --git a/tools/jenkins/website_build.groovy b/tools/jenkins/website_build.groovy
index 9c35f7e..e56e9c3 100644
--- a/tools/jenkins/website_build.groovy
+++ b/tools/jenkins/website_build.groovy
@@ -9,10 +9,16 @@ node("git-websites") {
     pwd
     env
     export
-    echo "Set ruby path to avoid writing to /usr directory"
-    export RUBY_PATH=${WORKSPACE}/shared/.rvm
-    export GEM_HOME=${RUBY_PATH}/gems
-    curl -sSL https://get.rvm.io | bash -s -- --path ${RUBY_PATH}
+    echo "Install rbenv into the workspace"
+    export RBENV_ROOT=${WORKSPACE}/shared/.rbenv
+    git clone https://github.com/rbenv/rbenv.git ${RBENV_ROOT}
+    export PATH=${RBENV_ROOT}/bin:$PATH
+    curl -fsSL https://github.com/rbenv/rbenv-installer/raw/main/bin/rbenv-doctor | bash    
+    exit 1
+
+
+
+
     which ruby
     ruby -v 
     mkdir -p ${GEM_HOME}/gems


[openwhisk-website] 07/07: debug

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

dgrove pushed a commit to branch debug-jenkins
in repository https://gitbox.apache.org/repos/asf/openwhisk-website.git

commit 0646ddfd42512035edb41fcb9fb725f48ce75946
Author: David Grove <gr...@us.ibm.com>
AuthorDate: Fri Sep 2 17:41:15 2022 -0400

    debug
---
 tools/jenkins/website_build.groovy | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/jenkins/website_build.groovy b/tools/jenkins/website_build.groovy
index e56e9c3..b551e49 100644
--- a/tools/jenkins/website_build.groovy
+++ b/tools/jenkins/website_build.groovy
@@ -12,7 +12,7 @@ node("git-websites") {
     echo "Install rbenv into the workspace"
     export RBENV_ROOT=${WORKSPACE}/shared/.rbenv
     git clone https://github.com/rbenv/rbenv.git ${RBENV_ROOT}
-    export PATH=${RBENV_ROOT}/bin:$PATH
+    export PATH=${RBENV_ROOT}/shims:$PATH
     curl -fsSL https://github.com/rbenv/rbenv-installer/raw/main/bin/rbenv-doctor | bash    
     exit 1
 


[openwhisk-website] 01/07: print ruby version

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

dgrove pushed a commit to branch debug-jenkins
in repository https://gitbox.apache.org/repos/asf/openwhisk-website.git

commit 1c1d5d8aadae8d301de7d10ef1df3fbb740389a8
Author: David Grove <gr...@us.ibm.com>
AuthorDate: Fri Sep 2 16:44:32 2022 -0400

    print ruby version
---
 tools/jenkins/website_build.groovy | 1 +
 1 file changed, 1 insertion(+)

diff --git a/tools/jenkins/website_build.groovy b/tools/jenkins/website_build.groovy
index d24118d..3676667 100644
--- a/tools/jenkins/website_build.groovy
+++ b/tools/jenkins/website_build.groovy
@@ -13,6 +13,7 @@ node("git-websites") {
     export RUBY_PATH=${WORKSPACE}/shared/.rvm
     export GEM_HOME=${RUBY_PATH}/gems
     curl -sSL https://get.rvm.io | bash -s -- --path ${RUBY_PATH}
+    ruby -v 
     mkdir -p ${GEM_HOME}/gems
     gem install  --install-dir ${GEM_HOME} jekyll bundler
     export PATH=${GEM_HOME}/bin:$PATH


[openwhisk-website] 05/07: debugging

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

dgrove pushed a commit to branch debug-jenkins
in repository https://gitbox.apache.org/repos/asf/openwhisk-website.git

commit 9843cddd86d6bdcc2bea7e12c40f4886ddb340a5
Author: David Grove <gr...@us.ibm.com>
AuthorDate: Fri Sep 2 17:16:18 2022 -0400

    debugging
---
 tools/jenkins/website_build.groovy | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/tools/jenkins/website_build.groovy b/tools/jenkins/website_build.groovy
index 7073a75..9c35f7e 100644
--- a/tools/jenkins/website_build.groovy
+++ b/tools/jenkins/website_build.groovy
@@ -13,8 +13,7 @@ node("git-websites") {
     export RUBY_PATH=${WORKSPACE}/shared/.rvm
     export GEM_HOME=${RUBY_PATH}/gems
     curl -sSL https://get.rvm.io | bash -s -- --path ${RUBY_PATH}
-    . ${RUBY_PATH}/scripts/rvm
-    rvm list known 
+    which ruby
     ruby -v 
     mkdir -p ${GEM_HOME}/gems
     gem install  --install-dir ${GEM_HOME} jekyll bundler


[openwhisk-website] 02/07: list ruby versions

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

dgrove pushed a commit to branch debug-jenkins
in repository https://gitbox.apache.org/repos/asf/openwhisk-website.git

commit b2b45310f0ba1b5d7dac0c46b8d76aa055fc96db
Author: David Grove <gr...@us.ibm.com>
AuthorDate: Fri Sep 2 16:49:54 2022 -0400

    list ruby versions
---
 tools/jenkins/website_build.groovy | 1 +
 1 file changed, 1 insertion(+)

diff --git a/tools/jenkins/website_build.groovy b/tools/jenkins/website_build.groovy
index 3676667..2331566 100644
--- a/tools/jenkins/website_build.groovy
+++ b/tools/jenkins/website_build.groovy
@@ -13,6 +13,7 @@ node("git-websites") {
     export RUBY_PATH=${WORKSPACE}/shared/.rvm
     export GEM_HOME=${RUBY_PATH}/gems
     curl -sSL https://get.rvm.io | bash -s -- --path ${RUBY_PATH}
+    rvm list known 
     ruby -v 
     mkdir -p ${GEM_HOME}/gems
     gem install  --install-dir ${GEM_HOME} jekyll bundler


[openwhisk-website] 03/07: source rvm init script

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

dgrove pushed a commit to branch debug-jenkins
in repository https://gitbox.apache.org/repos/asf/openwhisk-website.git

commit d28b9d5cd82b9bb0f3439dfb8fe75daf728609c5
Author: David Grove <gr...@us.ibm.com>
AuthorDate: Fri Sep 2 16:56:45 2022 -0400

    source rvm init script
---
 tools/jenkins/website_build.groovy | 1 +
 1 file changed, 1 insertion(+)

diff --git a/tools/jenkins/website_build.groovy b/tools/jenkins/website_build.groovy
index 2331566..809f456 100644
--- a/tools/jenkins/website_build.groovy
+++ b/tools/jenkins/website_build.groovy
@@ -13,6 +13,7 @@ node("git-websites") {
     export RUBY_PATH=${WORKSPACE}/shared/.rvm
     export GEM_HOME=${RUBY_PATH}/gems
     curl -sSL https://get.rvm.io | bash -s -- --path ${RUBY_PATH}
+    source ${RUBY_PATH}/scripts/rvm
     rvm list known 
     ruby -v 
     mkdir -p ${GEM_HOME}/gems