Download:
child 127:a10e42d2fc22
parent 125:b858529aa665
126:bd9e4ed25eb5
Anton Shestakov <av6@dwimlabs.net>, Thu, 11 Aug 2016 14:00:28 +0800
pipelines: hitting a supervisor bug, let's see if this helps It looks like an image problem, let's try another distro. (https://github.com/Supervisor/supervisor/issues/121)

1 файлов изменено, 6 вставок(+), 2 удалений(-) [+]
bitbucket-pipelines.yml file | annotate | diff | comparison | revisions
--- a/bitbucket-pipelines.yml Thu Aug 11 13:34:31 2016 +0800
+++ b/bitbucket-pipelines.yml Thu Aug 11 14:00:28 2016 +0800
@@ -1,16 +1,20 @@
-image: python:2
+image: ubuntu:xenial
pipelines:
default:
- step:
script:
+ - apt-get update
+ - apt-get install -y virtualenv
- pip install -r REQUIREMENTS
- ./test.py
- - apt-get update && apt-get install -y sudo
+
- pip install ansible
- ansible --version
- ansible-playbook provision/playbook.yml --syntax-check -vvvv
- ansible-playbook provision/playbook.yml --list-tasks -vvvv
+
+ - apt-get install -y sudo
- echo localhost > inventory
- ansible-playbook provision/playbook.yml
-i inventory --connection=local --skip-tags=ufw -vvvv