2016-01-04 11:48:03 +00:00
|
|
|
# The scripts for building the base images can be found in scripts/drone-images
|
|
|
|
|
2016-01-04 10:28:22 +00:00
|
|
|
build:
|
|
|
|
flake8:
|
2016-02-01 12:10:33 +00:00
|
|
|
image: python:3.5
|
2016-01-04 10:28:22 +00:00
|
|
|
commands:
|
2016-02-01 12:10:33 +00:00
|
|
|
- XDG_CACHE_HOME=/drone/pip-cache pip install flake8
|
2016-01-04 10:28:22 +00:00
|
|
|
- flake8 wagtail
|
2016-02-26 11:58:01 +00:00
|
|
|
isort:
|
|
|
|
image: python:3.5
|
|
|
|
commands:
|
|
|
|
- XDG_CACHE_HOME=/drone/pip-cache pip install wheel
|
|
|
|
- XDG_CACHE_HOME=/drone/pip-cache pip install isort -e .[testing,docs]
|
|
|
|
- isort --check-only --diff --recursive wagtail
|
2016-02-24 10:44:14 +00:00
|
|
|
js:
|
2016-02-01 12:28:25 +00:00
|
|
|
image: node:4.2.4
|
2016-01-04 10:28:22 +00:00
|
|
|
commands:
|
2016-02-24 10:44:14 +00:00
|
|
|
- npm install --quiet
|
|
|
|
- npm run lint
|
|
|
|
- npm run test:unit
|
2016-01-04 10:28:22 +00:00
|
|
|
scss-lint:
|
|
|
|
image: wagtail-scss-lint
|
|
|
|
commands:
|
|
|
|
- scss-lint
|
2016-01-27 12:14:40 +00:00
|
|
|
unittest:
|
|
|
|
image: python:3.5
|
|
|
|
commands:
|
|
|
|
- XDG_CACHE_HOME=/drone/pip-cache pip install wheel
|
2016-02-03 01:56:48 +00:00
|
|
|
- XDG_CACHE_HOME=/drone/pip-cache pip install -e .[testing,docs]
|
2016-01-27 12:14:40 +00:00
|
|
|
- python runtests.py
|
|
|
|
|
|
|
|
cache:
|
|
|
|
mount:
|
2016-02-01 12:28:25 +00:00
|
|
|
- node_modules
|
2016-01-27 12:14:40 +00:00
|
|
|
- /drone/pip-cache
|
2016-02-10 20:27:44 +00:00
|
|
|
|
|
|
|
notify:
|
|
|
|
slack:
|
|
|
|
webhook_url: https://hooks.slack.com/services/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
|
|
|
|
channel: builds
|
|
|
|
username: drone
|
|
|
|
when:
|
|
|
|
success: true
|
|
|
|
failure: true
|
|
|
|
change: true
|