Skip to content

Commit 326681c

Browse files
committed
remove buildspec
1 parent caa6ac8 commit 326681c

File tree

2 files changed

+24
-21
lines changed

2 files changed

+24
-21
lines changed

Jenkinfile

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
pipeline {
2+
agent any
3+
stages {
4+
stage('build') {
5+
when {
6+
allOf {
7+
branch: 'master';
8+
}
9+
parallel {
10+
stage('build_trusty_python2_library') {
11+
steps {
12+
awsCodeBuild envVariables: '[ { RUN_TESTS, false } ]', projectName: 'build_trusty_python2_library', region: 'us-east-1', sourceControlType: 'jenkins', credentialsType: 'keys'
13+
}
14+
}
15+
stage('build_bionic_python2_library') {
16+
steps {
17+
awsCodeBuild envVariables: '[ { RUN_TESTS, false } ]', projectName: 'build_bionic_python2_library', region: 'us-east-1', sourceControlType: 'jenkins', credentialsType: 'keys'
18+
}
19+
}
20+
}
21+
}
22+
}
23+
}
24+
}

buildspec.yml

Lines changed: 0 additions & 21 deletions
This file was deleted.

0 commit comments

Comments
 (0)