aboutsummaryrefslogtreecommitdiffstats
path: root/Jenkinsfile
diff options
context:
space:
mode:
Diffstat (limited to 'Jenkinsfile')
-rw-r--r--Jenkinsfile15
1 files changed, 15 insertions, 0 deletions
diff --git a/Jenkinsfile b/Jenkinsfile
index eba186fb..7f8cf6b7 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -194,6 +194,21 @@ def downstreams = [
pytest src
"""
],
+ [
+ downstreamName: 'urllib3',
+ label: 'docker',
+ imageName: 'pyca/cryptography-runner-ubuntu-rolling',
+ script: """#!/bin/bash -xe
+ git clone --depth 1 https://github.com/shazow/urllib3
+ cd urllib3
+ virtualenv .venv
+ source .venv/bin/activate
+ pip install ../cryptography
+ pip install -r ./dev-requirements.txt
+ pip install -e .[socks]
+ pytest test
+ """
+ ],
]
def checkout_git(label) {