This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| def checkoutPR () { | |
| checkout([ | |
| $class: 'GitSCM', | |
| branches: [[name: 'master']], | |
| extensions: [ | |
| [$class: 'CheckoutOption'], | |
| [$class: 'CloneOption', depth: 0, noTags: false, reference: '', shallow: true] | |
| ], | |
| userRemoteConfigs: [[ | |
| url: 'https://github.com/racker/reach', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import httplib | |
| import multiprocessing | |
| import os | |
| import re | |
| from collections import defaultdict | |
| from wsgiref.simple_server import make_server | |
| from django.core.handlers.wsgi import WSGIHandler | |
| from django.http import HttpResponse |
OlderNewer