130:aa9bf9c90aac
Anton Shestakov <av6@dwimlabs.net>, Thu, 11 Aug 2016 18:19:01 +0800
pipelines: no need to be extra verbose on the initial run If it fails, it will print enough debug info with just one -v. Also, verbosity level 4 prints debug messages for connection, which is unlikely to be useful (it's local).

next change 131:be85d5073342
previous change 129:ba47544bc028

bitbucket-pipelines.yml

Permissions: -rw-r--r--

Other formats: Feeds:
image: python:2
pipelines:
default:
- step:
script:
- pip install -r REQUIREMENTS
- ./test.py
- pip install ansible
- ansible --version
- echo localhost > inventory
- ansible-playbook provision/playbook.yml
-i inventory --syntax-check
- ansible-playbook provision/playbook.yml
-i inventory --list-tasks
- apt-get update && apt-get install -y sudo supervisor
- service supervisor restart
- ansible-playbook provision/playbook.yml
-i inventory --connection=local --skip-tags=ufw --verbose
- pgrep -f 'fruitbar/venv/bin/gunicorn'
- ansible-playbook provision/playbook.yml
-i inventory --connection=local --skip-tags=ufw -vvvv