forked from mtgred/netrunner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcircle.yml
30 lines (27 loc) · 949 Bytes
/
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
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 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