-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Depends-On: ansible/galaxy#2138 Signed-off-by: Paul Belanger <[email protected]>
- Loading branch information
1 parent
f8a749e
commit ac01c9f
Showing
2 changed files
with
134 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,18 @@ | ||
- 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 | ||
- name: github.com/ansible-network/releases | ||
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,118 @@ | ||
- hosts: all | ||
tasks: | ||
- name: Executor install-docker role | ||
include_role: | ||
name: install-docker | ||
vars: | ||
use_upstream_docker: false | ||
|
||
- name: Ensure dependencies are installed | ||
become: true | ||
package: | ||
name: | ||
- docker-compose | ||
- python-pexpect | ||
state: installed | ||
|
||
- name: Build docker containers | ||
shell: make dev/build | ||
args: | ||
chdir: "{{ zuul.projects['github.com/ansible/galaxy'].src_dir }}" | ||
executable: /bin/bash | ||
|
||
- name: Run docker-compose up | ||
shell: make dev/up_detached | ||
args: | ||
chdir: "{{ zuul.projects['github.com/ansible/galaxy'].src_dir }}" | ||
executable: /bin/bash | ||
|
||
- name: Print list of images | ||
command: docker image ls --all --digests --no-trunc | ||
|
||
- name: Wait for galaxy to start | ||
uri: | ||
url: http://localhost:8000 | ||
register: result | ||
until: result.status == 200 and result.redirected == false | ||
retries: 120 | ||
|
||
- name: Create admin user | ||
expect: | ||
chdir: "{{ zuul.projects['github.com/ansible/galaxy'].src_dir }}" | ||
command: make dev/createsuperuser | ||
echo: true | ||
responses: | ||
'Username:': admin | ||
'Email address:': [email protected] | ||
'Password:': secret | ||
'Password \(again\):': secret | ||
timeout: 60 | ||
|
||
- name: Create admin token | ||
args: | ||
chdir: "{{ zuul.projects['github.com/ansible/galaxy'].src_dir }}" | ||
executable: /bin/bash | ||
shell: make USERNAME=admin dev/createusertoken | tail -n1 | cut -d ' ' -f3 | ||
register: _token | ||
|
||
- name: Create ansible.cfg configuration file | ||
copy: | ||
content: | | ||
[galaxy] | ||
server_list = buildset_galaxy | ||
[galaxy_server.buildset_galaxy] | ||
url = http://localhost:8000 | ||
token = {{ _token.stdout }} | ||
dest: /tmp/galaxy.cfg | ||
mode: 0600 | ||
|
||
- name: Create network namespace | ||
args: | ||
chdir: "{{ zuul.projects['github.com/ansible/galaxy'].src_dir }}" | ||
executable: /bin/bash | ||
shell: make USERNAME=admin NAMESPACE=network dev/createnamespace | ||
|
||
- name: Confirm namespace exists | ||
uri: | ||
url: http://localhost:8000/api/v1/namespaces/?name=network | ||
register: result | ||
until: result.status == 200 | ||
retries: 120 | ||
|
||
- name: Assert namespace exists | ||
assert: | ||
that: | ||
- result.json.count != 0 | ||
|
||
- name: Setup tox role | ||
include_role: | ||
name: tox | ||
vars: | ||
tox_extra_args: -vv --notest | ||
tox_install_siblings: false | ||
zuul_work_dir: "{{ zuul.projects['github.com/ansible-network/releases'].src_dir }}" | ||
|
||
- name: Generate version number for ansible collection. | ||
args: | ||
chdir: "{{ zuul.project.src_dir }}" | ||
command: "{{ ansible_user_dir }}/{{ zuul.projects['github.com/ansible-network/releases'].src_dir }}/.tox/venv/bin/generate-ansible-collection" | ||
|
||
- name: Run build-ansible-collection role | ||
include_role: | ||
name: build-ansible-collection | ||
vars: | ||
ansible_galaxy_output_path: ~/artifacts | ||
ansible_galaxy_executable: "{{ ansible_user_dir }}/{{ zuul.projects['github.com/ansible-network/releases'].src_dir }}/.tox/venv/bin/ansible-galaxy" | ||
|
||
- name: Find tarballs to upload | ||
find: | ||
paths: ~/artifacts | ||
patterns: "*.tar.gz" | ||
register: found_tarballs | ||
|
||
- name: Publish collection to Ansible Galaxy | ||
environment: | ||
ANSIBLE_CONFIG: /tmp/galaxy.cfg | ||
shell: "{{ ansible_user_dir }}/{{ zuul.projects['github.com/ansible-network/releases'].src_dir }}/.tox/venv/bin/ansible-galaxy collection publish {{ item.path }}" | ||
with_items: "{{ found_tarballs.files }}" |