ubuntu 19.04 is eol

This commit is contained in:
lerentis 2020-06-06 00:25:47 +02:00
parent e91f74e2ba
commit e4eaf6b298
2 changed files with 0 additions and 44 deletions

View File

@ -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

View File

@ -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"]