Skip to content
Snippets Groups Projects
Commit b6d59ca3 authored by Markus Frosch's avatar Markus Frosch
Browse files

Add fedora 30

parent 254ccac6
No related branches found
No related tags found
No related merge requests found
Pipeline #3899 passed
...@@ -23,3 +23,6 @@ before_script: ...@@ -23,3 +23,6 @@ before_script:
'29': '29':
<<: *build_job <<: *build_job
'30':
<<: *build_job
FROM fedora:30
RUN dnf update -y --setopt=install_weak_deps=False
# TODO: Remove this once the build deps for boost have been cleaned up...
RUN echo '%build_icinga_org 1' >/etc/rpm/macros.icinga_build
RUN dnf install -y --allowerasing \
sudo wget curl which tar expect git \
patch rpm-build redhat-rpm-config rpmlint \
patch ccache make util-linux \
dnf-utils rpmdevtools createrepo \
&& dnf clean all
RUN groupadd -g 1000 jenkins \
&& useradd -u 1000 -g 1000 -m jenkins \
&& echo 'Defaults:jenkins !requiretty' | tee -a /etc/sudoers \
&& echo 'jenkins ALL=(ALL:ALL) NOPASSWD: ALL' | tee -a /etc/sudoers
RUN wget -O /etc/yum.repos.d/ICINGA-release.repo \
https://packages.icinga.com/fedora/ICINGA-release.repo
RUN git clone https://git.icinga.com/build-docker/scripts.git /usr/local/bin
ENTRYPOINT ["/usr/local/bin/icinga-build-entrypoint"]
CMD ["icinga-build-package"]
VARIANT := x86_64
include ../image.mk
all: all:
$(MAKE) -C 28 $(MAKE) -C 28
$(MAKE) -C 29 $(MAKE) -C 29
$(MAKE) -C 30
push: push:
$(MAKE) -C 28 push $(MAKE) -C 28 push
$(MAKE) -C 29 push $(MAKE) -C 29 push
$(MAKE) -C 30 push
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment