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
| Temporary Jenkins instructions for QA | |
| Until we roll Jenkins out to everyone, this is the process that should work for you. This is only because CircleCI | |
| integration is broken until my circle.yml changes are merged ( https://github.com/tophatmonocle/THM/pull/823 which | |
| I need to update shortly), which blocks the nicer workflow I've built in Jenkins. | |
| One requirement is that the branch you are launching is on the upstream tophatmonocle/THM repo, not someone's fork. | |
| We should already be moving over to this now anyway. | |
| To launch a test server: |
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
| language: python | |
| python: | |
| - "2.7.6" | |
| cache: | |
| directories: | |
| - $HOME/.pip-cache/ | |
| - $HOME/virtualenv/python2.7.6/ |
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
| # long-running command growler | |
| # hooks for zsh, built on bash version at http://hints.macworld.com/article.php?story=20071009124425468 | |
| preexec_functions+='save_preexec_time' | |
| save_preexec_time() { | |
| export PREEXEC_CMD="$(history $HISTCMD | sed 's/ *[0-9]* *//')" | |
| export PREEXEC_TIME=$(date +'%s') | |
| } | |
| precmd_functions+='growl_about_long_running_commands' |
NewerOlder