-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcicd.groovy
More file actions
19 lines (18 loc) · 858 Bytes
/
Copy pathcicd.groovy
File metadata and controls
19 lines (18 loc) · 858 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
node('linux')
{
stage ('Poll') {
checkout([
$class: 'GitSCM',
branches: [[name: '*/main']],
doGenerateSubmoduleConfigurations: false,
extensions: [],
userRemoteConfigs: [[url: 'https://github.com/zopencommunity/makeport.git']]])
}
stage('Build') {
build job: 'Port-Pipeline', parameters: [
string(name: 'PORT_GITHUB_REPO', value: 'https://github.com/zopencommunity/makeport.git'),
string(name: 'PORT_DESCRIPTION', value: 'GNU Make is a tool which controls the generation of executables and other non-source files of a program from program source files.'),
booleanParam(name: 'RUN_TESTS', value: true)
]
}
}