You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by sj...@apache.org on 2022/07/30 10:40:42 UTC

[maven-jenkins-lib] branch only-linux created (now 0ae7201)

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

sjaranowski pushed a change to branch only-linux
in repository https://gitbox.apache.org/repos/asf/maven-jenkins-lib.git


      at 0ae7201  Build only on linux nodes

This branch includes the following new commits:

     new 0ae7201  Build only on linux nodes

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.



[maven-jenkins-lib] 01/01: Build only on linux nodes

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

sjaranowski pushed a commit to branch only-linux
in repository https://gitbox.apache.org/repos/asf/maven-jenkins-lib.git

commit 0ae7201f588862b00349c3d15edd24ed900c087d
Author: Slawomir Jaranowski <s....@gmail.com>
AuthorDate: Sat Jul 30 12:39:08 2022 +0200

    Build only on linux nodes
    
    due to https://issues.apache.org/jira/browse/INFRA-23485
---
 vars/asfMavenTlpPlgnBuild.groovy | 2 +-
 vars/asfMavenTlpStdBuild.groovy  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/vars/asfMavenTlpPlgnBuild.groovy b/vars/asfMavenTlpPlgnBuild.groovy
index 5555577..6b2a7b1 100644
--- a/vars/asfMavenTlpPlgnBuild.groovy
+++ b/vars/asfMavenTlpPlgnBuild.groovy
@@ -36,7 +36,7 @@ def call(Map params = [:]) {
     properties(buildProperties)
 
     // now determine the matrix of parallel builds
-    def oses = params.containsKey('os') ? params.os : ['linux', 'windows']
+    def oses = params.containsKey('os') ? params.os : ['linux']
 	// minimum, LTS, current and next ea
     def jdks = params.containsKey('jdks') ? params.jdks : params.containsKey('jdk') ? params.jdk : ['8','11','17']
     def jdkMin = jdks[0];
diff --git a/vars/asfMavenTlpStdBuild.groovy b/vars/asfMavenTlpStdBuild.groovy
index f03dcd3..87f6f68 100644
--- a/vars/asfMavenTlpStdBuild.groovy
+++ b/vars/asfMavenTlpStdBuild.groovy
@@ -35,7 +35,7 @@ def call(Map params = [:]) {
     properties(buildProperties)
 
     // now determine the matrix of parallel builds
-    def oses = params.containsKey('os') ? params.os : ['linux', 'windows']
+    def oses = params.containsKey('os') ? params.os : ['linux']
     // minimum, LTS, current and next ea
     def jdks = params.containsKey('jdks') ? params.jdks : params.containsKey('jdk') ? params.jdk : ['8','11','17']
     def maven = params.containsKey('maven') ? params.maven : '3.8.x'