Skip to content

Instantly share code, notes, and snippets.

@dbathily
Created July 23, 2013 15:43
Show Gist options
  • Save dbathily/6063435 to your computer and use it in GitHub Desktop.
Save dbathily/6063435 to your computer and use it in GitHub Desktop.
cicrle ci playframework 2 sample
machine:
timezone:
UTC
environment:
PLAY_VERSION: 2.1.2
PLAY_HOME: play-$PLAY_VERSION
dependencies:
pre:
- if [[ ! -e $PLAY_HOME ]]; then curl -k -L -o $PLAY_HOME.zip http://downloads.typesafe.com/play/$PLAY_VERSION/play-$PLAY_VERSION.zip && unzip -q $PLAY_HOME.zip; fi
cache_directories:
- play-2.1.2 #ENV variables are not resolved here
test:
override:
- $PLAY_HOME/play clean test dist
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment