diff --git a/README.md b/README.md index 3624ad0..0341322 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -[![GitHub Actions CI/CD build status — Collection test suite](https://github.com/containers/ansible-podman-collections/workflows/Collection%20test%20suite/badge.svg?branch=master)](https://github.com/containers/ansible-podman-collections/actions?query=workflow%3A%22Collection%20test%20suite%22) +[![GitHub Actions CI/CD build status — Collection test suite](https://github.com/containers/ansible-podman-collections/workflows/Collection%20build%20and%20tests/badge.svg?branch=master)](https://github.com/containers/ansible-podman-collections/actions?query=workflow%3A%22Collection%20build%20and%20tests) Ansible Collection: containers.podman ================================================= diff --git a/ci/playbooks/connection_test.yml b/ci/playbooks/connection_test.yml index 5e6d112..04d8149 100644 --- a/ci/playbooks/connection_test.yml +++ b/ci/playbooks/connection_test.yml @@ -6,7 +6,7 @@ distro: "{{ ansible_distribution }}{{ ansible_distribution_major_version }}" tasks: - - name: Run test script + - name: Run test script for podman become: "{{ distro == 'CentOS7' }}" shell: >- {% if ansible_venv is defined %}source {{ ansible_venv }}/bin/activate; {% endif %} @@ -15,3 +15,13 @@ args: chdir: "{{ repo_dir }}" executable: /bin/bash + + - name: Run test script for buildah + become: "{{ distro == 'CentOS7' }}" + shell: >- + {% if ansible_venv is defined %}source {{ ansible_venv }}/bin/activate; {% endif %} + + {{ repo_dir }}/ci/run_connection_test.sh buildah + args: + chdir: "{{ repo_dir }}" + executable: /bin/bash diff --git a/galaxy.yml b/galaxy.yml index 7063bd8..7c5dd36 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -5,7 +5,6 @@ readme: README.md authors: Podman description: Podman container Ansible modules license: Apache-2.0 -license_file: COPYING tags: - containers - podman @@ -16,9 +15,11 @@ documentation: https://github.com/containers/ansible-podman-collections homepage: https://github.com/containers/ansible-podman-collections issues: https://github.com/containers/ansible-podman-collections/issues?q=is%3Aissue+is%3Aopen+sort%3Aupdated-desc build_ignore: - - build_artifact/ + - build_artifact - "*.tar.gz" - zuul.yaml - .gitignore - tests/output - ".history" + - ".vscode" + - ".idea"