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/06 14:36:08 UTC

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

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

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

commit 40142da1adc020a911b3bbd03675283557859d72
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