diff --git a/.drone.yml b/.drone.yml index 1e3ae20..1aed94f 100644 --- a/.drone.yml +++ b/.drone.yml @@ -23,18 +23,6 @@ steps: - push - pull_request -- name: build-ubuntu-19 - image: plugins/docker - settings: - dockerfile: ubuntu-19.04/Dockerfile - dry_run: true - repo: lerentis/ansible - tag: ubuntu-19.04 - when: - event: - - push - - pull_request - - name: build-ubuntu-18 image: plugins/docker settings: @@ -157,20 +145,6 @@ steps: event: - tag -- name: build-ubuntu-19-publish - image: plugins/docker - settings: - dockerfile: ubuntu-19.04/Dockerfile - password: - from_secret: docker_password - repo: lerentis/ansible - tag: ubuntu-19.04 - username: - from_secret: docker_username - when: - event: - - tag - - name: build-ubuntu-20-publish image: plugins/docker settings: @@ -309,7 +283,6 @@ steps: - success depends_on: - build-ubuntu-20 - - build-ubuntu-19 - build-ubuntu-18 - build-ubuntu-16 - build-ubuntu-14 @@ -320,7 +293,6 @@ steps: - build-centos-7 - build-arch - build-ubuntu-20-publish - - build-ubuntu-19-publish - build-ubuntu-18-publish - build-ubuntu-16-publish - build-ubuntu-14-publish diff --git a/ubuntu-19.04/Dockerfile b/ubuntu-19.04/Dockerfile deleted file mode 100644 index f089d0f..0000000 --- a/ubuntu-19.04/Dockerfile +++ /dev/null @@ -1,16 +0,0 @@ -FROM ubuntu:19.04 - -RUN apt-get update \ - && apt-get install -y --no-install-recommends \ - software-properties-common \ - apt-utils \ - && apt-add-repository ppa:ansible/ansible \ - && apt-get update \ - && apt-get install -y --no-install-recommends \ - ansible \ - python-apt \ - git-core \ - openssh-client \ - && apt-get clean - -CMD ["ansible-playbook", "--help"]