284:e22f9112672f
Anton Shestakov <av6@dwimlabs.net>, Sat, 16 Sep 2017 22:14:00 +0800
pipelines: it's too expensive to test provisioning

next change 286:6d3e76c87568
previous change 283:ce693988c419

bitbucket-pipelines.yml

Permissions: -rw-r--r--

Other formats: Feeds:
image: ubuntu:trusty
pipelines:
default:
- step:
caches:
- node
script:
- apt-get update && apt-get install -y
build-essential
libffi-dev
libssl-dev
python-dev
python-virtualenv
- virtualenv ./venv
- ./venv/bin/pip install ansible
- ./venv/bin/ansible --version
- echo localhost > inventory
- ./venv/bin/ansible-playbook contrib/provision/playbook.yml
-i inventory --syntax-check
- ./venv/bin/ansible-playbook contrib/provision/playbook.yml
-i inventory --list-tasks
- apt-get install -y npm
- make devel build
- hg d
- test $(HGPLAIN=1 hg d | wc -l) -eq 0
- apt-get install -y curl
- contrib/updatesri.sh *.html
- hg d
- test $(HGPLAIN=1 hg d | wc -l) -eq 0