mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
412 B
YAML
21 lines
412 B
YAML
6 years ago
|
---
|
||
|
- name: ensure Chocolatey is installed
|
||
|
win_chocolatey:
|
||
|
name: chocolatey
|
||
|
state: present
|
||
|
|
||
|
- name: ensure we start from a baseline for test feature
|
||
|
win_chocolatey_feature:
|
||
|
name: checksumFiles
|
||
|
state: disabled
|
||
|
|
||
|
- block:
|
||
|
- name: run tests
|
||
|
include_tasks: tests.yml
|
||
|
|
||
|
always:
|
||
|
- name: set feature back to enabled
|
||
|
win_chocolatey_feature:
|
||
|
name: checksumFiles
|
||
|
state: enabled
|