You are viewing a plain text version of this content. The canonical link for it is here.
Posted to server-dev@james.apache.org by ie...@apache.org on 2020/07/01 09:44:02 UTC

[james-project] branch JAMES-3225-autobuild updated (3c5fd7e -> 48bfb2b)

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

ieugen pushed a change to branch JAMES-3225-autobuild
in repository https://gitbox.apache.org/repos/asf/james-project.git.


 discard 3c5fd7e  JAMES-3225 #comment Fixed Jenkinsfile typo tests -> test
     new 48bfb2b  JAMES-3225 #comment Fixed Jenkinsfile typo tests -> test

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   (3c5fd7e)
            \
             N -- N -- N   refs/heads/JAMES-3225-autobuild (48bfb2b)

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:
 Jenkinsfile     | 2 +-
 settings.gradle | 7 -------
 2 files changed, 1 insertion(+), 8 deletions(-)


---------------------------------------------------------------------
To unsubscribe, e-mail: server-dev-unsubscribe@james.apache.org
For additional commands, e-mail: server-dev-help@james.apache.org


[james-project] 01/01: JAMES-3225 #comment Fixed Jenkinsfile typo tests -> test

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

ieugen pushed a commit to branch JAMES-3225-autobuild
in repository https://gitbox.apache.org/repos/asf/james-project.git

commit 48bfb2bd75eb7af9d8e19633d3508c87d95db083
Author: Eugen Stan <ie...@apache.org>
AuthorDate: Wed Jul 1 12:35:38 2020 +0300

    JAMES-3225 #comment Fixed Jenkinsfile typo tests -> test
    
    * Removed build scans - no longer recognized ?!
---
 Jenkinsfile     | 8 +++++++-
 settings.gradle | 7 -------
 2 files changed, 7 insertions(+), 8 deletions(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index 653a688..c398dee 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -49,7 +49,13 @@ pipeline {
     stages {
         stage('Build') {
             steps {
-                sh "./gradlew clean build -x tests --info --scan" 
+                sh "./gradlew clean build -x test"
+            }
+        }
+
+        stage('Run tests') {
+            steps {
+                sh "./gradlew build test"
             }
         }
     }
diff --git a/settings.gradle b/settings.gradle
index 00c901a..c57f77e 100644
--- a/settings.gradle
+++ b/settings.gradle
@@ -4,13 +4,6 @@
 
 rootProject.name = 'james-project'
 
-gradleEnterprise {
-    buildScan {
-        termsOfServiceUrl = 'https://gradle.com/terms-of-service'
-        termsOfServiceAgree = 'yes'
-    }
-}
-
 include(':james-backends-common:apache-james-backends-cassandra')
 include(':james-backends-common:apache-james-backends-es')
 include(':james-backends-common:apache-james-backends-jpa')


---------------------------------------------------------------------
To unsubscribe, e-mail: server-dev-unsubscribe@james.apache.org
For additional commands, e-mail: server-dev-help@james.apache.org