From 120e104be450d6dc5ecd12a40b30ab26336ab532 Mon Sep 17 00:00:00 2001 From: Stephen Donner Date: Tue, 18 Sep 2018 14:41:04 -0700 Subject: [PATCH] Deleting now-unused Jenkinsfile --- Jenkinsfile | 71 ----------------------------------------------------- 1 file changed, 71 deletions(-) delete mode 100644 Jenkinsfile diff --git a/Jenkinsfile b/Jenkinsfile deleted file mode 100644 index 144ffa8..0000000 --- a/Jenkinsfile +++ /dev/null @@ -1,71 +0,0 @@ -#!/usr/bin/env groovy - -def branch = env.BRANCH_NAME ?: 'master' - -/** Desired capabilities */ -def capabilities = [ - browserName: 'Firefox', - version: '62.0', - platform: 'Windows 10' -] - -pipeline { - agent any - libraries { - lib('fxtest@1.9') - } - triggers { - pollSCM(branch == 'master' ? 'H/5 * * * *' : '') - cron(branch == 'master' ? 'H * * * *' : '') - } - options { - ansiColor('xterm') - timestamps() - timeout(time: 30, unit: 'MINUTES') - } - environment { - PYTEST_ADDOPTS = - "--tb=short " + - "--color=yes " + - "--driver=SauceLabs " + - "--variables=capabilities.json" - SAUCELABS = credentials('SAUCELABS') - } - stages { - stage('Lint') { - agent { - dockerfile true - } - steps { - sh "tox -e flake8" - } - } - stage('Test') { - parallel { - stage('py36') { - agent { - dockerfile true - } - steps { - writeCapabilities(capabilities, 'capabilities.json') - sh "tox -e py36" - } - } - stage('py27') { - agent { - dockerfile true - } - steps { - writeCapabilities(capabilities, 'capabilities.json') - sh "tox -e py27" - } - } - } - } - } - post { - changed { - ircNotification() - } - } -}