From 279a06586ed55b4eca27d27b3448a16e1843909c Mon Sep 17 00:00:00 2001 From: Chris Hammer Date: Fri, 8 Dec 2023 23:37:39 -0500 Subject: [PATCH 1/5] add dev branch for drone image testing --- hello.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/hello.yml b/hello.yml index a90c638..ccd4396 100644 --- a/hello.yml +++ b/hello.yml @@ -5,6 +5,10 @@ tasks: - - name: Say Hello world + - name: Say hello world ansible.builtin.debug: msg: Hello world! + + - name: Say goodbye world + ansible.builtin.fail: + msg: Goodbye world! -- 2.47.1 From 8dd5ed9e36cc899e9fc11970f1ce15f9b8f607f1 Mon Sep 17 00:00:00 2001 From: Chris Hammer Date: Fri, 8 Dec 2023 23:39:28 -0500 Subject: [PATCH 2/5] add requirements.yml --- requirements.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 requirements.yml diff --git a/requirements.yml b/requirements.yml new file mode 100644 index 0000000..3fc0d09 --- /dev/null +++ b/requirements.yml @@ -0,0 +1,4 @@ +--- +collections: + - community.general + - ansible.posix -- 2.47.1 From e9fc63d47ed1b0d39ab77bebd75284a523fd1396 Mon Sep 17 00:00:00 2001 From: Chris Hammer Date: Fri, 8 Dec 2023 23:55:05 -0500 Subject: [PATCH 3/5] testing new image --- .drone.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.drone.yml b/.drone.yml index 73a366a..0f7c562 100644 --- a/.drone.yml +++ b/.drone.yml @@ -4,7 +4,7 @@ type: docker name: run_ansible_tests_fedora39 global-variables: - ansible_image : &ansible_image "gitea.thezengarden.net/podman/ansible-dev/fedora39:release-31" + ansible_image : &ansible_image "gitea.thezengarden.net/podman/ansible-dev/fedora39:release-34" ansible_inventory : &ansible_inventory "-i 127.0.0.1, --connection=local" ansible_playbook : &ansible_playbook "hello.yml" -- 2.47.1 From 0fa78146ec4694cb74cc4f9960cae183ac19af49 Mon Sep 17 00:00:00 2001 From: Chris Hammer Date: Fri, 8 Dec 2023 23:56:55 -0500 Subject: [PATCH 4/5] add .ansible-lint --- .ansible-lint | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .ansible-lint diff --git a/.ansible-lint b/.ansible-lint new file mode 100644 index 0000000..b6d3809 --- /dev/null +++ b/.ansible-lint @@ -0,0 +1,5 @@ +skip_list: + - yaml[colons] + - yaml[empty-lines] + - yaml[line-length] + - no-changed-when -- 2.47.1 From 9540d1d64bded9e39d289e6a3e0c6d293760d373 Mon Sep 17 00:00:00 2001 From: Chris Hammer Date: Fri, 8 Dec 2023 23:59:34 -0500 Subject: [PATCH 5/5] change fail to debug --- hello.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hello.yml b/hello.yml index ccd4396..8d08764 100644 --- a/hello.yml +++ b/hello.yml @@ -10,5 +10,5 @@ msg: Hello world! - name: Say goodbye world - ansible.builtin.fail: + ansible.builtin.debug: msg: Goodbye world! -- 2.47.1