You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by ko...@apache.org on 2022/01/18 21:27:46 UTC

[couchdb] branch jenkins-dynamic-matrix-throwaway updated (f6c8c74 -> 356edcd)

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

kocolosk pushed a change to branch jenkins-dynamic-matrix-throwaway
in repository https://gitbox.apache.org/repos/asf/couchdb.git.


 discard f6c8c74  See if setting build result is needed
 discard b3ef1d4  Further improvements to README
 discard 381e82e  Tweak error reporting a bit
 discard 85485fc  Try error signal to fail build
 discard 1a69257  Update README and render in GitHub UI
     add 3836dc7  Update README and render in GitHub UI
     add 3ba6fac  Use error() step to signal build failure
     add 479d652  Switch default to failFast: false
     new 356edcd  Start per-stage timer _after_ agent is acquired

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   (f6c8c74)
            \
             N -- N -- N   refs/heads/jenkins-dynamic-matrix-throwaway (356edcd)

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 1 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:
 build-aux/Jenkinsfile.full | 19 +++++++------------
 1 file changed, 7 insertions(+), 12 deletions(-)

[couchdb] 01/01: Start per-stage timer _after_ agent is acquired

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

kocolosk pushed a commit to branch jenkins-dynamic-matrix-throwaway
in repository https://gitbox.apache.org/repos/asf/couchdb.git

commit 356edcd25a870243281966524b26fc14267db8f2
Author: Adam Kocoloski <ko...@apache.org>
AuthorDate: Tue Jan 18 16:23:09 2022 -0500

    Start per-stage timer _after_ agent is acquired
---
 build-aux/Jenkinsfile.full | 16 +++++++---------
 1 file changed, 7 insertions(+), 9 deletions(-)

diff --git a/build-aux/Jenkinsfile.full b/build-aux/Jenkinsfile.full
index 7d089f8..328812c 100644
--- a/build-aux/Jenkinsfile.full
+++ b/build-aux/Jenkinsfile.full
@@ -275,16 +275,14 @@ pipeline {
         // TODO find a way to avoid setting this explicitly
         spidermonkey = '78'
       }
-      options {
-        // TODO start this timeout _after_ the agent has been acquired if possible
-        timeout(time: 15, unit: "MINUTES")
-      }
       steps {
-        sh (script: 'rm -rf apache-couchdb-*', label: 'Clean workspace of any previous release artifacts' )
-        sh "./configure --spidermonkey-version ${spidermonkey}"
-        sh 'make erlfmt-check'
-        sh 'make elixir-check-formatted'
-        sh 'make dist'
+        timeout(time: 15, unit: "MINUTES") {
+          sh (script: 'rm -rf apache-couchdb-*', label: 'Clean workspace of any previous release artifacts' )
+          sh "./configure --spidermonkey-version ${spidermonkey}"
+          sh 'make erlfmt-check'
+          sh 'make elixir-check-formatted'
+          sh 'make dist'
+        }
       }
       post {
         success {