Skip to content

Instantly share code, notes, and snippets.

@lukemelia
Created February 2, 2017 04:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lukemelia/2f4b912053cdd624c12ad162cb1618e0 to your computer and use it in GitHub Desktop.
Save lukemelia/2f4b912053cdd624c12ad162cb1618e0 to your computer and use it in GitHub Desktop.
Circle CI example deploying with ember-cli-deploy
machine:
node:
version: 5
checkout:
post:
- git submodule sync
- git submodule update --init
dependencies:
pre:
- npm install -g bower
post:
- bower install
cache_directories:
- "bower_components"
test:
override:
- mkdir -p $CIRCLE_TEST_REPORTS/testem/
- ember test --silent -r xunit > $CIRCLE_TEST_REPORTS/testem/xunit.xml
deployment:
qa:
branch: master
commands:
- ember deploy qa --activate
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment