Skip to content
Snippets Groups Projects
Commit fd18d8a4 authored by Noah Hilverling's avatar Noah Hilverling
Browse files

Merge branch 'feature/34' into 'master'

Add v34

See merge request !6
parents ca3bb251 b4fe894b
No related branches found
Tags 0.6.0-1
1 merge request!6Add v34
Pipeline #17547 passed
......@@ -23,3 +23,6 @@ before_script:
'33':
<<: *build_job
'34':
<<: *build_job
FROM fedora:34
RUN dnf update -y --setopt=install_weak_deps=False
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 wget -O /etc/yum.repos.d/ICINGA-release.repo \
https://packages.icinga.com/fedora/ICINGA-release.repo
RUN groupadd -g 1000 build \
&& useradd -u 1000 -g 1000 -m build \
&& echo 'Defaults:build !requiretty' | tee -a /etc/sudoers \
&& echo 'build ALL=(ALL:ALL) NOPASSWD: ALL' | tee -a /etc/sudoers \
&& chown build.build /usr/local/bin
USER build
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:
$(MAKE) -C 32
$(MAKE) -C 33
$(MAKE) -C 34
push:
$(MAKE) -C 32 push
$(MAKE) -C 33 push
$(MAKE) -C 34 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