Skip to content

Commit

Permalink
galaxy
Browse files Browse the repository at this point in the history
Signed-off-by: Paul Belanger <[email protected]>
  • Loading branch information
pabelanger committed Dec 8, 2019
1 parent f8a749e commit 7dd3e61
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 8 deletions.
23 changes: 15 additions & 8 deletions .zuul.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,17 @@
- nodeset:
name: ubuntu-bionic-1vcpu
nodes:
- name: ubuntu-bionic
label: ubuntu-bionic-1vcpu

- job:
name: galaxy-quick-start
run: playbooks/run.yaml
required-projects:
- name: github.com/ansible/galaxy
nodeset: ubuntu-bionic-1vcpu

- project:
post:
check:
jobs:
- release-ansible-collection-galaxy-dev
pre-rlease:
jobs:
- release-ansible-collection-galaxy-dev
release:
jobs:
- release-ansible-collection-galaxy-dev
- galaxy-quick-start
16 changes: 16 additions & 0 deletions playbooks/run.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
- hosts: all
tasks:
- name: Executor install-docker role
include_role:
name: install-docker

- name: Ensure docker-compose is installed
become: true
package:
name: docker-compose
state: installed

- name: Run docker-compose up
shell: docker-compose up -d -g galaxy -f compose.yml
args:
chdir: "{{ zuul.projects['github.com/ansible/galaxy'].src_dir }}/scripts/docker/dev"

0 comments on commit 7dd3e61

Please sign in to comment.