Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .cd-builders/windows/builder/playbook_build_env.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,9 @@
name: msys2
state: present
timeout: 90
register: msys_try1
ignore_errors: true
until: msys_try1.finished
register: msys_try1
ignore_errors: true
until: msys_try1.finished

- name: Install msys2 (2/2)
win_chocolatey:
Expand Down
20 changes: 19 additions & 1 deletion test/molecule-role/molecule/default/prepare.yml
Original file line number Diff line number Diff line change
Expand Up @@ -176,14 +176,32 @@
vars_files:
- common_vars.yml
tasks:
# Temporary - override netcat installation issues
- name: install chocolatey 0.10.13
win_chocolatey:
name: chocolatey
state: present
version: 0.10.13
force: yes

- name: disable enhanced exit codes
win_chocolatey_feature:
name: useEnhancedExitCodes
state: disabled
- name: Install netcat
- name: Install netcat (1/2)
win_chocolatey:
name: netcat
state: present
timeout: 90
register: net_try1
ignore_errors: true
until: net_try1.finished

- name: Install netcat (2/2)
win_chocolatey:
name: netcat
state: present
when: net_try1 is failed

- name: Prepare Ubuntu Agent listening before start
hosts: agent-ubuntu
Expand Down
2 changes: 1 addition & 1 deletion test/molecule-role/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ansible==2.7.10
ansible==2.7.11
ansible-lint==4.1.0
anyconfig==0.9.7
arrow==0.13.1
Expand Down