-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJenkinsfile
46 lines (36 loc) · 1.14 KB
/
Jenkinsfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#!groovy
/**
* This program and the accompanying materials are
* made available under the terms of the Eclipse Public License v2.0 which accompanies
* this distribution, and is available at https://www.eclipse.org/legal/epl-v20.html
*
* SPDX-License-Identifier: EPL-2.0
*
* Copyright Contributors to the Zowe Project.
*/
node("zowe-jenkins-agent") {
def lib = library("jenkins-library").org.zowe.jenkins_shared_library
def pipeline = lib.pipelines.generic.GenericPipeline.new(this)
pipeline.admins.add("dnikolaev", "sgrady")
pipeline.setup(
packageName: 'org.zowe.zss',
extraInit: {
pipeline.setVersion(sh(script: "cat version.txt", returnStdout: true).trim())
}
)
pipeline.build(
operation: {
echo "Build will happen in pre-packaging"
}
)
// define we need packaging stage, which processed in .pax folder
pipeline.packaging(name: 'zss', paxOptions: '-x os390')
// define we need publish stage
pipeline.publish(
allowPublishWithoutTest: true,
artifacts: [
'.pax/zss.pax',
]
)
pipeline.end()
}