forked from GrimoireGL/GrimoireJS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcircle.yml
More file actions
27 lines (27 loc) · 758 Bytes
/
circle.yml
File metadata and controls
27 lines (27 loc) · 758 Bytes
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
general:
branches:
ignore:
- gh-pages
machine:
timezone: Asia/Tokyo
node:
version: 4.3.1
dependencies:
pre:
- sudo apt-get install -y build-essential libxi-dev libglu1-mesa-dev libglew-dev
- mkdir ci
test:
override:
- npm run build -- --branch=$CIRCLE_BRANCH
- npm run doc -- --branch=$CIRCLE_BRANCH
- npm run lint -- --branch=$CIRCLE_BRANCH
- npm run cover -- --report-dir=ci/cover/$CIRCLE_BRANCH
post:
- git config --global user.email "admin@jthree.io"
- git config --global user.name "CircleCI"
- git fetch origin gh-pages
- git checkout origin/gh-pages
- git checkout -b gh-pages
- git add -A
- git commit -m "autodeploy-circle [ci skip]"
- git push origin gh-pages