diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index edaae4b57b3d3fdc5182ce5d5020636683a883dd..9637a73874919221d02ab2de2235c34c99ddbb14 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -26,3 +26,6 @@ before_script: '15.1': <<: *build_job + +'15.2': + <<: *build_job diff --git a/15.2/Dockerfile b/15.2/Dockerfile new file mode 100644 index 0000000000000000000000000000000000000000..465444462f398a297a0a2ce3fb77909b8847d429 --- /dev/null +++ b/15.2/Dockerfile @@ -0,0 +1,35 @@ +FROM opensuse/leap:15.2 + +RUN zypper refresh -f \ + && zypper update -y \ + && zypper clean + +RUN zypper --non-interactive install --no-recommends \ + sudo wget curl which tar expect git \ + make patch rpm-build rpmlint \ + && zypper clean + +RUN zypper --non-interactive install --no-recommends \ + cmake libopenssl-devel ccache \ + && zypper clean + +RUN OBS_DIST=openSUSE_Leap_15.2 \ + && zypper --non-interactive addrepo https://download.opensuse.org/repositories/home:/icinga/"${OBS_DIST}"/home:icinga.repo \ + && zypper --gpg-auto-import-keys --non-interactive install spectool createrepo \ + && zypper clean -a + +RUN rpm --import https://packages.icinga.com/icinga.key \ + && zypper --non-interactive addrepo --refresh https://packages.icinga.com/openSUSE/ICINGA-release.repo \ + && zypper --non-interactive refresh \ + && zypper clean -a + +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"] diff --git a/15.2/Makefile b/15.2/Makefile new file mode 100644 index 0000000000000000000000000000000000000000..f451fe153997996b75db9be5b1b9b967fad97fc4 --- /dev/null +++ b/15.2/Makefile @@ -0,0 +1,2 @@ +VARIANT := x86_64 +include ../image.mk diff --git a/Makefile b/Makefile index 47a1f4a3a4570c9e5de9b965690cb3802b77e482..0905417c3c30bcd2d12d53be680f69930608910e 100644 --- a/Makefile +++ b/Makefile @@ -2,8 +2,10 @@ all: $(MAKE) -C 42.3 $(MAKE) -C 15.0 $(MAKE) -C 15.1 + $(MAKE) -C 15.2 push: $(MAKE) -C 42.3 push $(MAKE) -C 15.0 push $(MAKE) -C 15.1 push + $(MAKE) -C 15.2 push