diff --git a/.drone.yml b/.drone.yml index ee022fb..8d43082 100644 --- a/.drone.yml +++ b/.drone.yml @@ -5,16 +5,14 @@ type: docker steps: - name: Prepare CentOS 8 image, clone, and test code - image: centos:8 + image: quay.io/centos/centos:stream9 commands: - hostname - lscpu - - dnf --disablerepo '*' --enablerepo=extras swap centos-linux-repos centos-stream-repos -y - - dnf distro-sync -y - dnf update -y - hostname - - dnf install -y ansible-core git - - pip3 install ansible-lint + - dnf install -y python3-pip git + - pip3 install ansible-core==2.14.11 ansible-lint==6.13.1 - mkdir /opt/test - git clone https://gitea.thezengarden.net/chris/drone-test-1.git /opt/test/drone-test-1 - ansible-lint /opt/test/drone-test-1 diff --git a/.drone.yml.old.centos8 b/.drone.yml.old.centos8 new file mode 100644 index 0000000..ee022fb --- /dev/null +++ b/.drone.yml.old.centos8 @@ -0,0 +1,21 @@ +--- +name: Ansible Linting of drone-test-1 +kind: pipeline +type: docker + +steps: + - name: Prepare CentOS 8 image, clone, and test code + image: centos:8 + commands: + - hostname + - lscpu + - dnf --disablerepo '*' --enablerepo=extras swap centos-linux-repos centos-stream-repos -y + - dnf distro-sync -y + - dnf update -y + - hostname + - dnf install -y ansible-core git + - pip3 install ansible-lint + - mkdir /opt/test + - git clone https://gitea.thezengarden.net/chris/drone-test-1.git /opt/test/drone-test-1 + - ansible-lint /opt/test/drone-test-1 +