forked from TheBrainFamily/chimpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
circle.yml
36 lines (32 loc) · 889 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
31
32
33
34
35
36
machine:
java:
version: oraclejdk8
node:
version: 6.11.1
environemnt:
DBUS_SESSION_BUS_ADDRESS: /dev/null
general:
branches:
ignore:
- gh-pages
dependencies:
cache_directories:
- "node_modules"
- "~/.npm"
pre:
- google-chrome --version
- wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
- sudo sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list'
- sudo apt-get update
- sudo apt-get --only-upgrade install google-chrome-stable
- google-chrome --version
- sudo apt-get update
- sudo apt-get install libpango1.0-0
- sudo apt-get install firefox
- sudo ln -sf /usr/lib/firefox/firefox /usr/bin/firefox
override:
- npm install
test:
override:
- npm run testonly:
parallel: true