mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Adding fedora rawhide to the travis mix
This commit is contained in:
parent
c632873936
commit
b72cd3a6d2
3 changed files with 48 additions and 0 deletions
|
@ -17,6 +17,7 @@ matrix:
|
||||||
- env: TARGET=centos6
|
- env: TARGET=centos6
|
||||||
- env: TARGET=centos7 TARGET_OPTIONS="--volume=/sys/fs/cgroup:/sys/fs/cgroup:ro"
|
- env: TARGET=centos7 TARGET_OPTIONS="--volume=/sys/fs/cgroup:/sys/fs/cgroup:ro"
|
||||||
- env: TARGET=fedora23 TARGET_OPTIONS="--volume=/sys/fs/cgroup:/sys/fs/cgroup:ro"
|
- env: TARGET=fedora23 TARGET_OPTIONS="--volume=/sys/fs/cgroup:/sys/fs/cgroup:ro"
|
||||||
|
- env: TARGET=fedora-rawhide TARGET_OPTIONS="--volume=/sys/fs/cgroup:/sys/fs/cgroup:ro"
|
||||||
- env: TARGET=ubuntu1404
|
- env: TARGET=ubuntu1404
|
||||||
addons:
|
addons:
|
||||||
apt:
|
apt:
|
||||||
|
|
46
test/utils/docker/fedora-rawhide/Dockerfile
Normal file
46
test/utils/docker/fedora-rawhide/Dockerfile
Normal file
|
@ -0,0 +1,46 @@
|
||||||
|
# Latest version of fedora rawhide
|
||||||
|
FROM fedora:rawhide
|
||||||
|
RUN dnf -y update; dnf clean all
|
||||||
|
RUN (cd /lib/systemd/system/sysinit.target.wants/; for i in *; do [ $i == systemd-tmpfiles-setup.service ] || rm -f $i; done); \
|
||||||
|
rm -f /lib/systemd/system/multi-user.target.wants/*; \
|
||||||
|
rm -f /etc/systemd/system/*.wants/*; \
|
||||||
|
rm -f /lib/systemd/system/local-fs.target.wants/*; \
|
||||||
|
rm -f /lib/systemd/system/sockets.target.wants/*udev*; \
|
||||||
|
rm -f /lib/systemd/system/sockets.target.wants/*initctl*; \
|
||||||
|
rm -f /lib/systemd/system/basic.target.wants/*; \
|
||||||
|
rm -f /lib/systemd/system/anaconda.target.wants/*;
|
||||||
|
RUN dnf -y install \
|
||||||
|
dbus-python \
|
||||||
|
file \
|
||||||
|
findutils \
|
||||||
|
git \
|
||||||
|
glibc-locale-source \
|
||||||
|
make \
|
||||||
|
mercurial \
|
||||||
|
procps \
|
||||||
|
PyYAML \
|
||||||
|
python-coverage \
|
||||||
|
python2-dnf \
|
||||||
|
python-httplib2 \
|
||||||
|
python-jinja2 \
|
||||||
|
python-keyczar \
|
||||||
|
python-mock \
|
||||||
|
python-nose \
|
||||||
|
python-paramiko \
|
||||||
|
python-pip \
|
||||||
|
python-setuptools \
|
||||||
|
python-virtualenv \
|
||||||
|
rubygems \
|
||||||
|
subversion \
|
||||||
|
sudo \
|
||||||
|
tar \
|
||||||
|
unzip \
|
||||||
|
which \
|
||||||
|
yum
|
||||||
|
RUN localedef --quiet -c -i en_US -f UTF-8 en_US.UTF-8
|
||||||
|
RUN /usr/bin/sed -i -e 's/^\(Defaults\s*requiretty\)/#--- \1/' /etc/sudoers
|
||||||
|
RUN mkdir /etc/ansible/
|
||||||
|
RUN /usr/bin/echo -e '[local]\nlocalhost ansible_connection=local' > /etc/ansible/hosts
|
||||||
|
VOLUME /sys/fs/cgroup /run /tmp
|
||||||
|
ENV container=docker
|
||||||
|
CMD ["/usr/sbin/init"]
|
|
@ -13,6 +13,7 @@ RUN dnf -y install \
|
||||||
dbus-python \
|
dbus-python \
|
||||||
file \
|
file \
|
||||||
findutils \
|
findutils \
|
||||||
|
glibc-locale-source \
|
||||||
git \
|
git \
|
||||||
make \
|
make \
|
||||||
mercurial \
|
mercurial \
|
||||||
|
|
Loading…
Reference in a new issue