mirror of
https://github.com/google/material-design-lite.git
synced 2024-11-10 01:47:01 +03:00
38 lines
1.3 KiB
YAML
38 lines
1.3 KiB
YAML
image: crhym3/ci-image
|
|
git:
|
|
depth: 1
|
|
cache:
|
|
- /cache
|
|
env:
|
|
- 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
|
|
script:
|
|
# workaround for cache, see https://github.com/drone/drone/issues/147
|
|
- mkdir -p /cache/node_modules
|
|
- rm -rf node_modules
|
|
- ln -s /cache/node_modules node_modules
|
|
# install dependencies
|
|
- npm install
|
|
- Xvfb $DISPLAY &
|
|
# ensure the build works
|
|
# this will also run gulp test
|
|
- gulp all
|
|
# get the version of chrome and driver we want, for more 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
|
|
# run additional tests
|
|
- 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
|