Skip to content
Snippets Groups Projects
Commit e77f3656 authored by Julian Brost's avatar Julian Brost :unicorn:
Browse files

Merge branch '36' into 'master'

Add v36

See merge request !9
parents 9882d6b6 a84e7050
No related branches found
No related tags found
1 merge request!9Add v36
Pipeline #24257 passed
...@@ -26,3 +26,6 @@ before_script: ...@@ -26,3 +26,6 @@ before_script:
'35': '35':
<<: *build_job <<: *build_job
'36':
<<: *build_job
FROM fedora:36
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 gcc \
&& 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
RUN git clone https://git.icinga.com/build-docker/scripts.git /usr/local/bin
RUN icinga-provide-go
USER build
ENTRYPOINT ["/usr/local/bin/icinga-build-entrypoint"]
CMD ["icinga-build-package"]
VARIANT := x86_64
include ../image.mk
...@@ -2,8 +2,10 @@ all: ...@@ -2,8 +2,10 @@ all:
$(MAKE) -C 33 $(MAKE) -C 33
$(MAKE) -C 34 $(MAKE) -C 34
$(MAKE) -C 35 $(MAKE) -C 35
$(MAKE) -C 36
push: push:
$(MAKE) -C 33 push $(MAKE) -C 33 push
$(MAKE) -C 34 push $(MAKE) -C 34 push
$(MAKE) -C 35 push $(MAKE) -C 35 push
$(MAKE) -C 36 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