-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
Copy pathcircle.yml
57 lines (50 loc) · 1.25 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
general:
branches:
ignore:
- gh-pages
## Customize the test machine
machine:
node:
version: 5.11.1
post:
- npm install -g gulp-cli
## Customize checkout
checkout:
post:
- git submodule sync
- git submodule update --init # use submodules
## Customize dependencies
dependencies:
# we automatically cache and restore many dependencies between
# builds. If you need to, you can add custom paths to cache:
cache_directories:
- "test/fixtures/node_modules"
override:
- gulp updateFixtures:test
- gulp installFixtures
post:
- gulp build
test:
override:
- gulp test
## Custom notifications
#notify:
notify:
webhooks:
# A list of hook hashes, containing the url field
# gitter hook
- url: https://webhooks.gitter.im/e/ac3980c61cb722b9e789
# deployment:
# docs:
# branch: master
# commands:
# - composer global require justinwalsh/daux.io
# - gulp docs
#test:
# pre:
# - cd sc-*-linux && ./bin/sc --user $SAUCE_USERNAME --api-key $SAUCE_ACCESS_KEY --readyfile ~/sauce_is_ready:
# background: true
# # Wait for tunnel to be ready
# - while [ ! -e ~/sauce_is_ready ]; do sleep 1; done
# post:
# - killall --wait sc # wait for Sauce Connect to close the tunnel