aboutsummaryrefslogtreecommitdiffstats
path: root/Jenkinsfile
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2018-10-30 04:53:33 +0800
committerAlex Gaynor <alex.gaynor@gmail.com>2018-10-29 16:53:33 -0400
commit2f15dfbd5b49ef44bc61ab8e614a48a9579d2420 (patch)
tree46b1c2ad98706ceb863d3ec1193a4fe4f25a012e /Jenkinsfile
parent983b35e7b0b76e687889f755d62c3a95dd485944 (diff)
downloadcryptography-2f15dfbd5b49ef44bc61ab8e614a48a9579d2420.tar.gz
cryptography-2f15dfbd5b49ef44bc61ab8e614a48a9579d2420.tar.bz2
cryptography-2f15dfbd5b49ef44bc61ab8e614a48a9579d2420.zip
move linkcheck to travis (#4544)
* move linkcheck to travis only run it on master merges just like we do on jenkins * don't build for a PR
Diffstat (limited to 'Jenkinsfile')
-rw-r--r--Jenkinsfile11
1 files changed, 0 insertions, 11 deletions
diff --git a/Jenkinsfile b/Jenkinsfile
index b9d86986..14a1ed7f 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -28,17 +28,6 @@ def configs = [
],
]
-/* Add the linkcheck job to our config list if we're on master */
-if (env.BRANCH_NAME == "master") {
- configs.add(
- [
- label: 'docker',
- imageName: 'pyca/cryptography-runner-buster',
- toxenvs: ['docs-linkcheck'],
- ]
- )
-}
-
def checkout_git(label) {
retry(3) {
def script = ""