Bulk up cached dependencies
This commit is contained in:
parent
6b9abf0b5d
commit
215f564cc4
1 changed files with 9 additions and 6 deletions
|
|
@ -11,9 +11,9 @@ jobs:
|
||||||
- restore_cache:
|
- restore_cache:
|
||||||
key: honeysql-{{ checksum "deps.edn" }}
|
key: honeysql-{{ checksum "deps.edn" }}
|
||||||
# Install Node for JH Build
|
# Install Node for JH Build
|
||||||
- run:
|
# - run:
|
||||||
name: Download Node
|
# name: Download Node
|
||||||
command: curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash
|
# command: curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash
|
||||||
- run:
|
- run:
|
||||||
name: Install Node
|
name: Install Node
|
||||||
command: sudo apt-get install -y nodejs
|
command: sudo apt-get install -y nodejs
|
||||||
|
|
@ -21,11 +21,14 @@ jobs:
|
||||||
name: update-npm
|
name: update-npm
|
||||||
command: sudo npm install -g npm@latest
|
command: sudo npm install -g npm@latest
|
||||||
- run:
|
- run:
|
||||||
name: Run Tests
|
name: Download Dependencies
|
||||||
command: clojure -R:test:runner -Spath
|
command: clojure -R:test:runner:cljs-runner:eastwood:readme -Spath && clojure -A:1.7 -Spath && clojure -A:1.8 -Spath && clojure -A:1.9 -Spath
|
||||||
- save_cache:
|
- save_cache:
|
||||||
paths:
|
paths:
|
||||||
- ~/.m2
|
- ~/.m2
|
||||||
- ~/.gitlibs
|
- ~/.gitlibs
|
||||||
|
- ~/node_modules
|
||||||
key: honeysql-{{ checksum "deps.edn" }}
|
key: honeysql-{{ checksum "deps.edn" }}
|
||||||
- run: sh run-tests.sh
|
- run:
|
||||||
|
name: Run all the tests
|
||||||
|
command: sh run-tests.sh all
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue