Path: csiph.com!usenet.pasdenom.info!dedibox.gegeweb.org!gegeweb.eu!nntpfeed.proxad.net!proxad.net!feeder1-2.proxad.net!usenet-fr.net!nerim.net!novso.com!newsfeed.xs4all.nl!newsfeed2.news.xs4all.nl!xs4all!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.001 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; 'parameters': 0.04; 'coverage.': 0.07; 'pypy': 0.07; 'here?': 0.09; 'next,': 0.09; 'subject:test': 0.09; 'url:github': 0.09; 'python': 0.11; 'suggest': 0.14; '(it': 0.16; 'burak': 0.16; 'fine.': 0.16; 'from:addr:arskom.com.tr': 0.16; 'from:addr:burak.arslan': 0.16; 'from:name:burak arslan': 0.16; 'ironpython': 0.16; 'message- id:@arskom.com.tr': 0.16; 'portable': 0.16; 'received:arskomhosting.com': 0.16; 'to:name:python list': 0.16; 'folks': 0.16; 'all.': 0.16; 'seems': 0.21; 'header:User-Agent:1': 0.23; 'integrate': 0.24; 'setup,': 0.24; 'fine': 0.24; 'environment': 0.24; 'source': 0.25; 'script': 0.25; 'this:': 0.26; 'cool': 0.30; "i'm": 0.30; 'requests': 0.31; 'stuff': 0.32; 'open': 0.33; 'worked': 0.33; 'proceed': 0.33; 'could': 0.34; 'except': 0.35; 'but': 0.35; 'building': 0.35; 'there': 0.35; 'version': 0.36; 'really': 0.36; 'combination': 0.36; 'done': 0.36; 'similar': 0.36; 'should': 0.36; 'so,': 0.37; 'requirements': 0.37; 'project': 0.37; 'problems': 0.38; 'to:addr :python-list': 0.38; 'list,': 0.38; 'resource': 0.38; "couldn't": 0.39; 'supporting': 0.39; 'to:addr:python.org': 0.39; 'how': 0.40; 'decided': 0.64; 'hours': 0.66; 'latest': 0.67; 'deeply': 0.69; 'url:master': 0.84 Date: Tue, 17 Dec 2013 16:07:04 +0200 From: Burak Arslan User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Thunderbird/24.1.1 MIME-Version: 1.0 To: Python List Subject: Bootstrapping a test environment X-Enigmail-Version: 1.6 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 38 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1387289592 news.xs4all.nl 2883 [2001:888:2000:d::a6]:48817 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:62190 Hello list, I decided to set up a portable Jenkins environment for an open source project I'm working on. After a couple of hours of tinkering, I ended up with this: https://github.com/arskom/spyne/blob/05f7a08489e6dc04a3b5659eb325390bea13b2ff/run_tests.sh (it should have been a Makefile) This worked just fine. Next, I wanted to integrate other Python implementations to this setup, but none really worked so far. Jython-2.7-beta installs fine but seems to have problems fetching stuff from the internet. I couldn't get IronPython to compile under mono at all. I couldn't look at PyPy deeply but resource requirements for building it seem scary... Here's the latest version of that script: https://github.com/arskom/spyne/blob/master/run_tests.sh Note that there's nothing project-specific there except the --source and --omit parameters to coverage. Here's the script in action: https://spyne.ci.cloudbees.com/. Btw, Kudos to cool folks at cloudbees for supporting FOSS, It's been rock solid so far. They got unlimited parallel executors, no less :) So, could people who've done similar things share their experience? How do you suggest I should proceed here? Do you have a working ipy/mono version combination that works? Is there a similar build script for PyPy somewhere? Pull requests are very much welcome :) Best regards, Burak