forked from zopencommunity/zstdport
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcicd.groovy
More file actions
15 lines (14 loc) · 706 Bytes
/
cicd.groovy
File metadata and controls
15 lines (14 loc) · 706 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
node('linux')
{
stage ('Poll') {
checkout([
$class: 'GitSCM',
branches: [[name: '*/main']],
doGenerateSubmoduleConfigurations: false,
extensions: [],
userRemoteConfigs: [[url: 'https://github.com/ZOSOpenTools/zstdport.git']]])
}
stage('Build') {
build job: 'Port-Pipeline', parameters: [string(name: 'PORT_GITHUB_REPO', value: 'https://github.com/ZOSOpenTools/zstdport.git'), string(name: 'PORT_DESCRIPTION', value: 'A fast lossless compression algorithm, targeting real-time compression scenarios at zlib-level' )]
}
}