285:30fd0d2a81ce
Anton Shestakov <av6@dwimlabs.net>, Sat, 16 Sep 2017 22:29:17 +0800
Make: use npm update for devel target package.json says we want coffee-script >= 1.6.1, so that's what `make devel` should install (the newest version): since .js source is tracked, there's no risk of running into breaking changes in coffee-script outside of test environment. But running into such changes during tests is OK and even potentially desirable.

next change 286:6d3e76c87568
previous change 284:e22f9112672f

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