aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2017-06-26 01:13:15 -1000
committerAlex Gaynor <alex.gaynor@gmail.com>2017-06-26 07:13:15 -0400
commit3662b8cf8507089111b92703435ae7fea4c21834 (patch)
tree4c5a0b800794f57a77099c65613b6b5806f88290
parent8c0e731b907c5e59aa16055d889cd2fe91eb8cc9 (diff)
downloadcryptography-3662b8cf8507089111b92703435ae7fea4c21834.tar.gz
cryptography-3662b8cf8507089111b92703435ae7fea4c21834.tar.bz2
cryptography-3662b8cf8507089111b92703435ae7fea4c21834.zip
our build function was shadowing the build builtin. whoops. (#3726)
-rw-r--r--.jenkins/Jenkinsfile-Update-Homebrew-OpenSSL8
1 files changed, 3 insertions, 5 deletions
diff --git a/.jenkins/Jenkinsfile-Update-Homebrew-OpenSSL b/.jenkins/Jenkinsfile-Update-Homebrew-OpenSSL
index 33bf7513..75beee82 100644
--- a/.jenkins/Jenkinsfile-Update-Homebrew-OpenSSL
+++ b/.jenkins/Jenkinsfile-Update-Homebrew-OpenSSL
@@ -1,6 +1,6 @@
def configs = ["sierra", "yosemite"]
-def build(label) {
+def _build(label) {
node(label) {
try {
timeout(time: 30, unit: 'MINUTES') {
@@ -24,12 +24,10 @@ def builders = [:]
for (_label in configs) {
def label = _label
builders[label] = {
- build(label)
+ _build(label)
}
}
parallel builders
-/* We'd like to trigger a downstream job, but bugs. Commented out for now */
-/* Re-enable when the exception from https://ci.cryptography.io/job/cryptography-update-brew-openssl/6/console is fixed */
-/* build job: 'pyca/cryptography/master', wait: false */
+build job: 'pyca/cryptography/master', wait: false