Skip to content

Instantly share code, notes, and snippets.

@mlavin
Created September 3, 2011 16:45
Show Gist options
  • Save mlavin/1191444 to your computer and use it in GitHub Desktop.
Save mlavin/1191444 to your computer and use it in GitHub Desktop.
Jenkins Build Script
#!/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