forked from google/material-design-lite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.drone.yml
35 lines (35 loc) · 1.18 KB
/
.drone.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
clone:
depth: 1
cache:
mount:
- node_modules
build:
image: crhym3/ci-image
environment:
- CHROME=https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
- WEBDRIVER=http://chromedriver.storage.googleapis.com/2.16/chromedriver_linux64.zip
- DISPLAY=:99
commands:
- Xvfb $DISPLAY &
# gulp mocha:closure inexplicably throws an error w/o without -g phantomjs
- npm install -g phantomjs
- npm install
# build and unit test
- gulp all
- gulp mocha:closure
# additional browser tests
# do this after the build and unit tests to fail fast
- curl -sSLo chrome.deb $CHROME && dpkg -i chrome.deb
- curl -sSLo driver.zip $WEBDRIVER && unzip -q driver.zip -d /usr/bin
- node test/memory/test.js
#deploy:
# bash:
# when:
# owner: google
# branch: master
# script:
# - apt-get install -y python-openssl # gcloud deps for service accounts
# - openssl aes-256-cbc -d -in .drone.p12.enc -out .drone.p12 -pass env:DRONE_PASS
# - /gcloud/bin/gcloud components update -q gsutil
# - /gcloud/bin/gcloud auth activate-service-account $$DRONE_ACCOUNT --key-file .drone.p12
# - gulp publish:staging