forked from edgexfoundry/developer-scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile
32 lines (32 loc) · 857 Bytes
/
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
pipeline {
agent {
label 'centos7-docker-4c-2g'
}
options {
timestamps()
quietPeriod(5) // wait a few seconds before starting to aggregate builds...??
durabilityHint 'PERFORMANCE_OPTIMIZED'
timeout(360)
}
triggers {
issueCommentTrigger('.*^recheck$.*')
}
stages {
stage('Smoke Tests') {
when {
expression { !edgex.isReleaseStream() }
}
steps {
build job: '/edgexfoundry/edgex-taf-pipelines/smoke-test', parameters: [string(name: 'SHA1', value: env.GIT_COMMIT), string(name: 'TEST_ARCH', value: 'All'), string(name: 'WITH_SECURITY', value: 'All')]
}
}
}
post {
always {
edgeXInfraPublish()
}
cleanup {
cleanWs()
}
}
}