forked from willardmr/DjangoTableSelectMultipleWidget
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJenkinsfile
32 lines (31 loc) · 970 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 any
stages {
stage('build') {
when {
anyOf {
branch 'master'
branch 'production'
branch 'release_candidate'
buildingTag()
}
}
parallel {
stage('build_bionic') {
steps {
awsCodeBuild projectName: 'build_bionic_python_library',
envVariables: '[ { RUN_TESTS, false }, { CREATE_SDIST, true } ]',
region: 'us-east-1',
sourceControlType: 'jenkins',
credentialsType: 'keys'
awsCodeBuild projectName: 'build_bionic_python_library',
envVariables: '[ { RUN_TESTS, false }, { CREATE_SDIST, true }, { PYTHON, python3 } ]',
region: 'us-east-1',
sourceControlType: 'jenkins',
credentialsType: 'keys'
}
}
}
}
}
}