Skip to content

Commit 39de3bb

Browse files
committed
Exorcise merge gremlins
* Fix upstream repository references * Only run Galaxy push when creds are defined * Molecule Tests * Copy init playbook from local project * Remove unused files
1 parent b3af06a commit 39de3bb

File tree

7 files changed

+15
-151
lines changed

7 files changed

+15
-151
lines changed

.github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
- name: Build and install collection
3838
run: |
3939
ansible-galaxy collection build --force
40-
ansible-galaxy collection install --force syndr-molecule-*.tar.gz
40+
ansible-galaxy collection install --force *-molecule-*.tar.gz
4141
4242
- name: Log into AWS
4343
if: ${{ matrix.molecule-scenario == 'ec2_platform' }}

.github/workflows/publish.yml

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ jobs:
2424

2525
- name: Build and Deploy Collection
2626
uses: artis3n/ansible_galaxy_collection@v2
27+
if: ${{ secrets.GALAXY_API_KEY != '' }}
2728
with:
2829
api_key: '${{ secrets.GALAXY_API_KEY }}'
2930

molecule/ec2_platform/converge.yml

-52
This file was deleted.

molecule/ec2_platform/molecule.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ platforms:
1313
region: us-west-2
1414
vpc_id: vpc-07bd460b98a3fb162
1515
vpc_subnet_id: subnet-0725b4ef4d069f1bf
16-
instance_type: t3.micro
16+
instance_type: t3.small
1717
ssh_user: molecule_runner
1818
hostvars:
1919
test_hostvar: test

molecule/ec2_platform/prepare.yml

-83
This file was deleted.

molecule/resources/converge.yml

+12-11
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,6 @@
5454
- name: Run the init role
5555
vars:
5656
test_dir: /tmp/molecule-init
57-
test_init_wget_path: "https://raw.githubusercontent.com/syndr/ansible-collection-molecule/main/roles/init/files/init.yml"
5857
test_collection_dir: "{{ test_dir }}/ci_testing/test_collection"
5958
test_role_dir: "{{ test_dir }}/ci_testing/test_collection"
6059
block:
@@ -77,17 +76,18 @@
7776
state: directory
7877

7978
- name: Molecule init playbook exists for collection
80-
ansible.builtin.command:
81-
chdir: "{{ test_collection_dir }}"
82-
cmd: wget -P molecule/default {{ test_init_wget_path }}
83-
creates: "{{ test_collection_dir }}/molecule/default/init.yml"
79+
ansible.builtin.copy:
80+
src: "{{ playbook_dir }}/../../roles/init/files/init.yml"
81+
dest: "{{ test_collection_dir }}/molecule/default/init.yml"
82+
mode: "0644"
8483

8584
- name: Run init playbook on collection
8685
# TODO: Actually check idempotence on this
86+
tags:
87+
- molecule-idempotence-notest
8788
ansible.builtin.command:
8889
chdir: "{{ test_collection_dir }}"
8990
cmd: ansible-playbook molecule/default/init.yml
90-
changed_when: false
9191

9292
- name: Test with a role
9393
block:
@@ -103,17 +103,18 @@
103103
state: directory
104104

105105
- name: Molecule init playbook exists for role
106-
ansible.builtin.command:
107-
chdir: "{{ test_role_dir }}"
108-
cmd: wget -P molecule/default {{ test_init_wget_path }}
109-
creates: "{{ test_role_dir }}/molecule/default/init.yml"
106+
ansible.builtin.copy:
107+
src: "{{ playbook_dir }}/../../roles/init/files/init.yml"
108+
dest: "{{ test_role_dir }}/molecule/default/init.yml"
109+
mode: "0644"
110110

111111
- name: Run init playbook on role
112112
# TODO: Actually check idempotence on this
113+
tags:
114+
- molecule-idempotence-notest
113115
ansible.builtin.command:
114116
chdir: "{{ test_role_dir }}"
115117
cmd: ansible-playbook molecule/default/init.yml
116-
changed_when: false
117118

118119
- name: Test with a monolith
119120
block:

molecule/resources/prepare.yml

-3
Original file line numberDiff line numberDiff line change
@@ -131,15 +131,13 @@
131131
ansible.builtin.apt:
132132
pkg:
133133
- ansible
134-
- wget
135134
- acl
136135
when: ansible_distribution | lower == 'ubuntu'
137136

138137
- name: Install packages (RHEL Family)
139138
ansible.builtin.package:
140139
name:
141140
- ansible-core
142-
- wget
143141
when: ansible_distribution_file_variety | lower == 'redhat'
144142

145143
- name: Verify application availibility
@@ -148,7 +146,6 @@
148146
changed_when: false
149147
loop:
150148
- ansible-playbook --version
151-
- wget --version
152149

153150
- name: Add the working version of this project to test host
154151
become: true

0 commit comments

Comments
 (0)