Compare commits
11 Commits
Author | SHA1 | Date | |
---|---|---|---|
e312aac855 | |||
a8b69e8750 | |||
b003743058 | |||
beb79f4b87 | |||
e4eaf6b298 | |||
e91f74e2ba | |||
d8e7aed134
|
|||
10e594b29b
|
|||
2612d77af0 | |||
8e3863ca2c | |||
26eeda67d1 |
44
.drone.yml
44
.drone.yml
@ -11,13 +11,13 @@ concurrency:
|
|||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
|
||||||
- name: build-ubuntu-19
|
- name: build-ubuntu-20
|
||||||
image: plugins/docker
|
image: plugins/docker
|
||||||
settings:
|
settings:
|
||||||
dockerfile: ubuntu-19.04/Dockerfile
|
dockerfile: ubuntu-20.04/Dockerfile
|
||||||
dry_run: true
|
dry_run: true
|
||||||
repo: lerentis/ansible
|
repo: lerentis/ansible
|
||||||
tag: ubuntu-19.04
|
tag: ubuntu-20.04
|
||||||
when:
|
when:
|
||||||
event:
|
event:
|
||||||
- push
|
- push
|
||||||
@ -107,6 +107,18 @@ steps:
|
|||||||
- push
|
- push
|
||||||
- pull_request
|
- pull_request
|
||||||
|
|
||||||
|
- name: build-centos-8
|
||||||
|
image: plugins/docker
|
||||||
|
settings:
|
||||||
|
dockerfile: centos-8/Dockerfile
|
||||||
|
dry_run: true
|
||||||
|
repo: lerentis/ansible
|
||||||
|
tag: centos-8
|
||||||
|
when:
|
||||||
|
event:
|
||||||
|
- push
|
||||||
|
- pull_request
|
||||||
|
|
||||||
- name: build-centos-7
|
- name: build-centos-7
|
||||||
image: plugins/docker
|
image: plugins/docker
|
||||||
settings:
|
settings:
|
||||||
@ -145,14 +157,14 @@ steps:
|
|||||||
event:
|
event:
|
||||||
- tag
|
- tag
|
||||||
|
|
||||||
- name: build-ubuntu-19-publish
|
- name: build-ubuntu-20-publish
|
||||||
image: plugins/docker
|
image: plugins/docker
|
||||||
settings:
|
settings:
|
||||||
dockerfile: ubuntu-19.04/Dockerfile
|
dockerfile: ubuntu-20.04/Dockerfile
|
||||||
password:
|
password:
|
||||||
from_secret: docker_password
|
from_secret: docker_password
|
||||||
repo: lerentis/ansible
|
repo: lerentis/ansible
|
||||||
tag: ubuntu-19.04
|
tag: ubuntu-20.04
|
||||||
username:
|
username:
|
||||||
from_secret: docker_username
|
from_secret: docker_username
|
||||||
when:
|
when:
|
||||||
@ -257,6 +269,20 @@ steps:
|
|||||||
event:
|
event:
|
||||||
- tag
|
- tag
|
||||||
|
|
||||||
|
- name: build-centos-8-publish
|
||||||
|
image: plugins/docker
|
||||||
|
settings:
|
||||||
|
dockerfile: centos-8/Dockerfile
|
||||||
|
password:
|
||||||
|
from_secret: docker_password
|
||||||
|
repo: lerentis/ansible
|
||||||
|
tag: centos-8
|
||||||
|
username:
|
||||||
|
from_secret: docker_username
|
||||||
|
when:
|
||||||
|
event:
|
||||||
|
- tag
|
||||||
|
|
||||||
- name: build-arch-publish
|
- name: build-arch-publish
|
||||||
image: plugins/docker
|
image: plugins/docker
|
||||||
settings:
|
settings:
|
||||||
@ -282,7 +308,7 @@ steps:
|
|||||||
- failure
|
- failure
|
||||||
- success
|
- success
|
||||||
depends_on:
|
depends_on:
|
||||||
- build-ubuntu-19
|
- build-ubuntu-20
|
||||||
- build-ubuntu-18
|
- build-ubuntu-18
|
||||||
- build-ubuntu-16
|
- build-ubuntu-16
|
||||||
- build-ubuntu-14
|
- build-ubuntu-14
|
||||||
@ -291,8 +317,9 @@ steps:
|
|||||||
- build-debian-8
|
- build-debian-8
|
||||||
- build-debian-7
|
- build-debian-7
|
||||||
- build-centos-7
|
- build-centos-7
|
||||||
|
- build-centos-8
|
||||||
- build-arch
|
- build-arch
|
||||||
- build-ubuntu-19-publish
|
- build-ubuntu-20-publish
|
||||||
- build-ubuntu-18-publish
|
- build-ubuntu-18-publish
|
||||||
- build-ubuntu-16-publish
|
- build-ubuntu-16-publish
|
||||||
- build-ubuntu-14-publish
|
- build-ubuntu-14-publish
|
||||||
@ -301,4 +328,5 @@ steps:
|
|||||||
- build-debian-8-publish
|
- build-debian-8-publish
|
||||||
- build-debian-7-publish
|
- build-debian-7-publish
|
||||||
- build-centos-7-publish
|
- build-centos-7-publish
|
||||||
|
- build-centos-8-publish
|
||||||
- build-arch-publish
|
- build-arch-publish
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
FROM alpine:3.4
|
FROM alpine:3.10
|
||||||
|
|
||||||
RUN apk add --no-cache ansible
|
RUN apk add --no-cache ansible
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
FROM archlinux/base
|
FROM archlinux/base
|
||||||
|
|
||||||
RUN pacman -Syuu --noconfirm && pacman -S python2 ansible sshpass git python2-passlib python2-netaddr --noconfirm
|
RUN pacman -Syuu --noconfirm && pacman -S python ansible sshpass git python-passlib python-netaddr --noconfirm
|
||||||
|
|
||||||
CMD ["ansible-playbook", "--help"]
|
CMD ["ansible-playbook", "--help"]
|
||||||
|
18
build-all.sh
Normal file → Executable file
18
build-all.sh
Normal file → Executable file
@ -1,10 +1,10 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
cd ubuntu-18.04 && docker build -t lerentis/ansible:ubuntu-18.04 .
|
cd ubuntu-18.04 && docker buildx build -t lerentis/ansible:ubuntu-18.04 --platform=linux/arm,linux/arm64,linux/amd64 . --push
|
||||||
cd ubuntu-16.04 && docker build -t lerentis/ansible:ubuntu-16.04 .
|
cd ../ubuntu-16.04 && docker buildx build -t lerentis/ansible:ubuntu-16.04 --platform=linux/arm,linux/arm64,linux/amd64 . --push
|
||||||
cd ../alpine-3 && docker build -t lerentis/ansible:alpine-3 .
|
cd ../alpine-3 && docker buildx build -t lerentis/ansible:alpine-3 --platform=linux/arm,linux/arm64,linux/amd64 . --push
|
||||||
cd ../ubuntu-14.04 && docker build -t lerentis/ansible:ubuntu-14.04 .
|
cd ../ubuntu-14.04 && docker buildx build -t lerentis/ansible:ubuntu-14.04 --platform=linux/arm,linux/arm64,linux/amd64 . --push
|
||||||
cd ../fedora-24 && docker build -t lerentis/ansible:fedora-24 .
|
cd ../fedora-24 && docker buildx build -t lerentis/ansible:fedora-24 --platform=linux/arm,linux/arm64,linux/amd64 . --push
|
||||||
cd ../debian-8 && docker build -t lerentis/ansible:debian-8 .
|
cd ../debian-8 && docker buildx build -t lerentis/ansible:debian-8 --platform=linux/arm,linux/amd64 . --push
|
||||||
cd ../debian-7 && docker build -t lerentis/ansible:debian-7 .
|
cd ../debian-7 && docker buildx build -t lerentis/ansible:debian-7 --platform=linux/arm,linux/amd64 . --push
|
||||||
cd ../centos-7 && docker build -t lerentis/ansible:centos-7 .
|
cd ../centos-7 && docker buildx build -t lerentis/ansible:centos-7 --platform=linux/arm,linux/arm64,linux/amd64 . --push
|
||||||
cd ../arch && docker build -t lerentis/ansible:arch .
|
cd ../arch && docker buildx build -t lerentis/ansible:arch --platform=linux/arm,linux/arm64,linux/amd64 . --push
|
||||||
|
7
centos-8/Dockerfile
Normal file
7
centos-8/Dockerfile
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
FROM centos:8
|
||||||
|
|
||||||
|
RUN dnf -y install python3-pip &&\
|
||||||
|
dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm &&\
|
||||||
|
dnf install -y --enablerepo epel-playground ansible
|
||||||
|
|
||||||
|
CMD ["ansible-playbook", "--help"]
|
@ -1,12 +1,9 @@
|
|||||||
FROM ubuntu:19.04
|
FROM ubuntu:20.04
|
||||||
|
|
||||||
RUN apt-get update \
|
RUN apt-get update \
|
||||||
&& apt-get install -y --no-install-recommends \
|
&& DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
|
||||||
software-properties-common \
|
software-properties-common \
|
||||||
apt-utils \
|
apt-utils \
|
||||||
&& apt-add-repository ppa:ansible/ansible \
|
|
||||||
&& apt-get update \
|
|
||||||
&& apt-get install -y --no-install-recommends \
|
|
||||||
ansible \
|
ansible \
|
||||||
python-apt \
|
python-apt \
|
||||||
git-core \
|
git-core \
|
Reference in New Issue
Block a user