Compare commits
12 Commits
Author | SHA1 | Date | |
---|---|---|---|
e312aac855 | |||
a8b69e8750 | |||
b003743058 | |||
beb79f4b87 | |||
e4eaf6b298 | |||
e91f74e2ba | |||
d8e7aed134
|
|||
10e594b29b
|
|||
2612d77af0 | |||
8e3863ca2c | |||
26eeda67d1 | |||
d0351f79ff |
57
.drone.yml
57
.drone.yml
@ -10,6 +10,19 @@ concurrency:
|
||||
limit: 9
|
||||
|
||||
steps:
|
||||
|
||||
- name: build-ubuntu-20
|
||||
image: plugins/docker
|
||||
settings:
|
||||
dockerfile: ubuntu-20.04/Dockerfile
|
||||
dry_run: true
|
||||
repo: lerentis/ansible
|
||||
tag: ubuntu-20.04
|
||||
when:
|
||||
event:
|
||||
- push
|
||||
- pull_request
|
||||
|
||||
- name: build-ubuntu-18
|
||||
image: plugins/docker
|
||||
settings:
|
||||
@ -94,6 +107,18 @@ steps:
|
||||
- push
|
||||
- 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
|
||||
image: plugins/docker
|
||||
settings:
|
||||
@ -132,6 +157,20 @@ steps:
|
||||
event:
|
||||
- tag
|
||||
|
||||
- name: build-ubuntu-20-publish
|
||||
image: plugins/docker
|
||||
settings:
|
||||
dockerfile: ubuntu-20.04/Dockerfile
|
||||
password:
|
||||
from_secret: docker_password
|
||||
repo: lerentis/ansible
|
||||
tag: ubuntu-20.04
|
||||
username:
|
||||
from_secret: docker_username
|
||||
when:
|
||||
event:
|
||||
- tag
|
||||
|
||||
- name: build-ubuntu-16-publish
|
||||
image: plugins/docker
|
||||
settings:
|
||||
@ -230,6 +269,20 @@ steps:
|
||||
event:
|
||||
- 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
|
||||
image: plugins/docker
|
||||
settings:
|
||||
@ -255,6 +308,7 @@ steps:
|
||||
- failure
|
||||
- success
|
||||
depends_on:
|
||||
- build-ubuntu-20
|
||||
- build-ubuntu-18
|
||||
- build-ubuntu-16
|
||||
- build-ubuntu-14
|
||||
@ -263,7 +317,9 @@ steps:
|
||||
- build-debian-8
|
||||
- build-debian-7
|
||||
- build-centos-7
|
||||
- build-centos-8
|
||||
- build-arch
|
||||
- build-ubuntu-20-publish
|
||||
- build-ubuntu-18-publish
|
||||
- build-ubuntu-16-publish
|
||||
- build-ubuntu-14-publish
|
||||
@ -272,4 +328,5 @@ steps:
|
||||
- build-debian-8-publish
|
||||
- build-debian-7-publish
|
||||
- build-centos-7-publish
|
||||
- build-centos-8-publish
|
||||
- build-arch-publish
|
||||
|
@ -13,6 +13,8 @@ Available operating systems:
|
||||
* debian-8
|
||||
* fedora-24
|
||||
* ubuntu-16.04
|
||||
* ubuntu-18.04
|
||||
* ubuntu-19.04
|
||||
* arch
|
||||
|
||||
## run playbooks
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM alpine:3.4
|
||||
FROM alpine:3.10
|
||||
|
||||
RUN apk add --no-cache ansible
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
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"]
|
||||
|
18
build-all.sh
Normal file → Executable file
18
build-all.sh
Normal file → Executable file
@ -1,10 +1,10 @@
|
||||
#!/bin/bash
|
||||
cd ubuntu-18.04 && docker build -t lerentis/ansible:ubuntu-18.04 .
|
||||
cd ubuntu-16.04 && docker build -t lerentis/ansible:ubuntu-16.04 .
|
||||
cd ../alpine-3 && docker build -t lerentis/ansible:alpine-3 .
|
||||
cd ../ubuntu-14.04 && docker build -t lerentis/ansible:ubuntu-14.04 .
|
||||
cd ../fedora-24 && docker build -t lerentis/ansible:fedora-24 .
|
||||
cd ../debian-8 && docker build -t lerentis/ansible:debian-8 .
|
||||
cd ../debian-7 && docker build -t lerentis/ansible:debian-7 .
|
||||
cd ../centos-7 && docker build -t lerentis/ansible:centos-7 .
|
||||
cd ../arch && docker build -t lerentis/ansible:arch .
|
||||
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 buildx build -t lerentis/ansible:ubuntu-16.04 --platform=linux/arm,linux/arm64,linux/amd64 . --push
|
||||
cd ../alpine-3 && docker buildx build -t lerentis/ansible:alpine-3 --platform=linux/arm,linux/arm64,linux/amd64 . --push
|
||||
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 buildx build -t lerentis/ansible:fedora-24 --platform=linux/arm,linux/arm64,linux/amd64 . --push
|
||||
cd ../debian-8 && docker buildx build -t lerentis/ansible:debian-8 --platform=linux/arm,linux/amd64 . --push
|
||||
cd ../debian-7 && docker buildx build -t lerentis/ansible:debian-7 --platform=linux/arm,linux/amd64 . --push
|
||||
cd ../centos-7 && docker buildx build -t lerentis/ansible:centos-7 --platform=linux/arm,linux/arm64,linux/amd64 . --push
|
||||
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"]
|
13
ubuntu-20.04/Dockerfile
Normal file
13
ubuntu-20.04/Dockerfile
Normal file
@ -0,0 +1,13 @@
|
||||
FROM ubuntu:20.04
|
||||
|
||||
RUN apt-get update \
|
||||
&& DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
|
||||
software-properties-common \
|
||||
apt-utils \
|
||||
ansible \
|
||||
python-apt \
|
||||
git-core \
|
||||
openssh-client \
|
||||
&& apt-get clean
|
||||
|
||||
CMD ["ansible-playbook", "--help"]
|
Reference in New Issue
Block a user