You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@zookeeper.apache.org by eo...@apache.org on 2023/02/13 14:10:21 UTC

[zookeeper] branch master updated: [ZOOKEEPER-4668] Fix s390x Jenkinsfile and use s390x agent (#1982)

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

eolivelli pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/zookeeper.git


The following commit(s) were added to refs/heads/master by this push:
     new 0374d566d [ZOOKEEPER-4668] Fix s390x Jenkinsfile and use s390x agent (#1982)
0374d566d is described below

commit 0374d566db047e69e867febbbf00f8a42a558104
Author: Vivian Kong <vi...@ca.ibm.com>
AuthorDate: Mon Feb 13 09:09:44 2023 -0500

    [ZOOKEEPER-4668] Fix s390x Jenkinsfile and use s390x agent (#1982)
---
 Jenkinsfile-s390x | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/Jenkinsfile-s390x b/Jenkinsfile-s390x
index 21cef3606..bd48a1c28 100644
--- a/Jenkinsfile-s390x
+++ b/Jenkinsfile-s390x
@@ -35,7 +35,9 @@ pipeline {
     stages {
         stage('Prepare') {
 
-            agent any
+            agent {
+                label 's390x'
+            }
 
             tools {
                 maven "maven_latest"