Add shippable tests. (#4)

This commit is contained in:
Felix Fontein
2020-03-24 20:03:33 +01:00
parent 70615300fb
commit e91849d1d8
37 changed files with 553 additions and 63 deletions

View File

@@ -1,5 +1,2 @@
- name: delete temporary directory
include_tasks: default-cleanup.yml
- name: delete temporary directory (windows)
include_tasks: windows-cleanup.yml

View File

@@ -1,4 +0,0 @@
- name: delete temporary directory (windows)
ansible.windows.win_file:
path: '{{ remote_tmp_dir }}'
state: absent

View File

@@ -1,10 +0,0 @@
- name: create temporary directory
register: remote_tmp_dir
notify:
- delete temporary directory (windows)
ansible.windows.win_tempfile:
state: directory
suffix: .test
- name: record temporary directory
set_fact:
remote_tmp_dir: '{{ remote_tmp_dir.path }}'