Skip to content
Snippets Groups Projects
circle.yml 415 B
Newer Older
  • Learn to ignore specific revisions
  • Cam Saul's avatar
    Cam Saul committed
        version:
          oraclejdk8
    
    dependencies:    # We can skip inferred `npm install` since we're not running browser tests (yet).
      override:      # We can also skip `lein deps` since the test commands will install them if needed.
        - echo "ok." # No need to spin up Clojure twice
    
    Cam Saul's avatar
    Cam Saul committed
    test:
      override:
    
        - case $CIRCLE_NODE_INDEX in 0) lein eastwood ;; 1) lein test ;; esac:
    
            parallel: true