Created
September 3, 2011 16:45
-
-
Save mlavin/1191444 to your computer and use it in GitHub Desktop.
Jenkins Build Script
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
#!/bin/bash -ex | |
export PIP_DOWNLOAD_CACHE=/tmp/.pip_download_cache | |
cd $WORKSPACE | |
virtualenv -q ve | |
source ./ve/bin/activate | |
pip install -E ./ve -r requirements/ci-apps.txt | |
cd $WORKSPACE/homebrew | |
ln -fs `pwd`/settings/ci.py `pwd`/settings/local.py | |
python manage.py jenkins |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment