forked from mtgred/netrunner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
circle.yml
37 lines (33 loc) · 1.08 KB
/
circle.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
machine:
node:
version: 5.5.0
dependencies:
cache_directories:
- mongodb-linux-x86_64-2.6.4
- resources/public/img/cards
pre:
- if [[ ! -d mongodb-linux-x86_64-2.6.4 ]]; then wget http://downloads.mongodb.org/linux/mongodb-linux-x86_64-2.6.4.tgz && tar xvzf mongodb-linux-x86_64-2.6.4.tgz; fi
- sudo /etc/init.d/mongodb stop
- sudo cp mongodb-linux-x86_64-2.6.4/bin/* /usr/bin
- sudo /etc/init.d/mongodb start
post:
- cd data; coffee fetch.coffee
test:
override:
- lein compile game.main
- lein compile test.core
- lein compile test.cards.assets
- lein compile test.cards.events
- lein compile test.cards.resources
- lein test test.core
- lein test test.cards.agendas
- lein test test.cards.assets
- lein test test.cards.events
- lein test test.cards.hardware
- lein test test.cards.ice
- lein test test.cards.icebreakers
- lein test test.cards.identities
- lein test test.cards.operations
- lein test test.cards.programs
- lein test test.cards.resources
- lein test test.cards.upgrades