~raoul-snyman/openlp/fix-macos-pdf-test

« back to all changes in this revision

Viewing changes to scripts/jenkins_script.py

  • Committer: Raoul Snyman
  • Date: 2019-02-14 07:04:30 UTC
  • mfrom: (2766.3.118 webengine-migrate)
  • Revision ID: raoul@snyman.info-20190214070430-nxe1vaeaapq3ult5
Migration from WebKit to Webengine. Also introduced reveal.js for slide rendering, new screen setup dialogs and many other changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
44
44
import re
45
45
import time
46
46
from argparse import ArgumentParser
47
 
from subprocess import Popen, PIPE
 
47
from subprocess import PIPE, Popen
48
48
 
49
49
from jenkins import Jenkins
50
50
 
 
51
 
51
52
JENKINS_URL = 'https://ci.openlp.io/'
52
53
REPO_REGEX = r'(.*/+)(~.*)'
53
54