34 lines
882 B
YAML
34 lines
882 B
YAML
dist: trusty
|
|
sudo: required
|
|
language: node_js
|
|
node_js:
|
|
- "5"
|
|
os:
|
|
- linux
|
|
env:
|
|
global:
|
|
- DBUS_SESSION_BUS_ADDRESS=/dev/null
|
|
- DISPLAY=:99.0
|
|
- CHROME_BIN=chromium-browser
|
|
- LATEST_RELEASE=2.0.0-rc.4
|
|
matrix:
|
|
- TASK=lint
|
|
- TASK="run-e2e-tests --fast" SCRIPT=examples-install.sh
|
|
- TASK="run-e2e-tests --fast" SCRIPT=examples-install-preview.sh
|
|
- TASK=harp-compile SCRIPT=deploy-install.sh
|
|
- TASK=harp-compile SCRIPT=deploy-install-preview.sh
|
|
matrix:
|
|
fast_finish: true
|
|
allow_failures:
|
|
- env: "TASK=\"run-e2e-tests --fast\" SCRIPT=examples-install-preview.sh"
|
|
- env: "TASK=harp-compile SCRIPT=deploy-install-preview.sh"
|
|
before_install:
|
|
- npm install -g gulp --no-optional
|
|
install:
|
|
- npm install --no-optional
|
|
- if [[ $SCRIPT ]]; then ./scripts/$SCRIPT; fi
|
|
before_script:
|
|
- sh -e /etc/init.d/xvfb start
|
|
script:
|
|
- gulp $TASK
|