8bca70aadc
This allows us to show build history in the web ui. Also add a local test playbook for the quickstart which basically does what the zuul-quick-start job does, but expects to run locally on a workstation (ie, does not install the docker registry and docker). Change-Id: Id62dcf69f48399dab3d1259679bf2fc2ce50460e
11 lines
250 B
YAML
11 lines
250 B
YAML
- hosts: localhost
|
|
vars:
|
|
workspace: /tmp/quickstart-test
|
|
local: true
|
|
ssh_public_key: "{{ lookup('file', '~/.ssh/id_rsa.pub') }}"
|
|
ssh_agent:
|
|
stdout: ''
|
|
tasks:
|
|
- name: Run tasks in ssh agent
|
|
include_tasks: main.yaml
|