[ https://issues.apache.org/jira/browse/MNG-7848?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17751770#comment-17751770 ]
ASF GitHub Bot commented on MNG-7848: ------------------------------------- kun-lu20 commented on code in PR #1207: URL: https://github.com/apache/maven/pull/1207#discussion_r1286254437 ########## Jenkinsfile.s390x: ########## @@ -0,0 +1,173 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +properties([buildDiscarder(logRotator(artifactNumToKeepStr: '5', numToKeepStr: env.BRANCH_NAME=='master'?'5':'1'))]) + +def buildOs = 'linux' +def buildJdk = '8' +def buildMvn = '3.8.x' +def runITsOses = ['linux'] +def runITsJdks = ['11', '17'] +def runITsMvn = '3.8.x' +def runITscommand = "mvn clean install -Prun-its,embedded -B -U -V" // -DmavenDistro=... -Dmaven.test.failure.ignore=true +def tests + +try { + +def osNode = jenkinsEnv.labelForOS(buildOs) +node('s390x') { + dir('build') { + stage('Checkout') { + checkout scm + } + + def WORK_DIR=pwd() + def MAVEN_GOAL='verify' + + stage('Configure deploy') { Review Comment: Sure, thanks for pointing out! Will open a new PR to remove it. > Add s390x pipeline to Jenkins CI > -------------------------------- > > Key: MNG-7848 > URL: https://issues.apache.org/jira/browse/MNG-7848 > Project: Maven > Issue Type: New Feature > Components: Bootstrap & Build, Integration Tests > Reporter: Kun Lu > Priority: Major > Labels: pull-request-available > > Apache INFRA team has installed necessary JDK flavours on all s390x nodes > (Please check issue > [https://issues.apache.org/jira/projects/INFRA/issues/INFRA-24781]). We’d > like to add the s390x pipeline to Jenkins CI by raising a PR to add ` > Jenkinsfile.s390x` to the Maven code base. > Can anyone from Maven team help us review the PR and create the s390x > pipeline on Jenkins? Thanks! -- This message was sent by Atlassian Jira (v8.20.10#820010)