forked from awslabs/libfabric-ci-scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJenkinsFile
More file actions
25 lines (25 loc) · 753 Bytes
/
Copy pathJenkinsFile
File metadata and controls
25 lines (25 loc) · 753 Bytes
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
pipeline {
agent {
node {
label 'master'
}
}
stages {
stage('Testing') {
parallel {
stage('Single Node') {
steps {
sh 'echo "==>Beginning single node tests"'
build job: 'single-node', parameters: [string(name: 'PULL_REQUEST_REF', value: sha1), string(name: 'PULL_REQUEST_ID', value: ghprbPullId), string(name: 'TARGET_BRANCH', value: ghprbTargetBranch)], propagate: true
}
}
stage('Multi Node') {
steps {
sh 'echo "==> Beginning multi node tests"'
build job: 'multi-node', parameters: [string(name: 'PULL_REQUEST_REF', value: sha1), string(name: 'PULL_REQUEST_ID', value: ghprbPullId), string(name: 'TARGET_BRANCH', value: ghprbTargetBranch)], propagate: true
}
}
}
}
}
}