Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
fedora
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Docker Build Images
fedora
Compare revisions
9882d6b6a43bb881b9253c0ac41ed2ed7246f258 to e77f365663b6df0efdcbd00d2fbca47cf2d47d83
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
build-docker/fedora
Select target project
No results found
e77f365663b6df0efdcbd00d2fbca47cf2d47d83
Select Git revision
Branches
master
Swap
Target
build-docker/fedora
Select target project
build-docker/fedora
1 result
9882d6b6a43bb881b9253c0ac41ed2ed7246f258
Select Git revision
Branches
master
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (2)
Add v36
· a84e7050
Alexander A. Klimov
authored
2 years ago
a84e7050
Merge branch '36' into 'master'
· e77f3656
Julian Brost
authored
2 years ago
Add v36 See merge request
!9
e77f3656
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
.gitlab-ci.yml
+3
-0
3 additions, 0 deletions
.gitlab-ci.yml
36/Dockerfile
+25
-0
25 additions, 0 deletions
36/Dockerfile
36/Makefile
+2
-0
2 additions, 0 deletions
36/Makefile
Makefile
+2
-0
2 additions, 0 deletions
Makefile
with
32 additions
and
0 deletions
.gitlab-ci.yml
View file @
e77f3656
...
...
@@ -26,3 +26,6 @@ before_script:
'
35'
:
<<
:
*build_job
'
36'
:
<<
:
*build_job
This diff is collapsed.
Click to expand it.
36/Dockerfile
0 → 100644
View file @
e77f3656
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"]
This diff is collapsed.
Click to expand it.
36/Makefile
0 → 100644
View file @
e77f3656
VARIANT
:=
x86_64
include
../image.mk
This diff is collapsed.
Click to expand it.
Makefile
View file @
e77f3656
...
...
@@ -2,8 +2,10 @@ all:
$(
MAKE
)
-C
33
$(
MAKE
)
-C
34
$(
MAKE
)
-C
35
$(
MAKE
)
-C
36
push
:
$(
MAKE
)
-C
33 push
$(
MAKE
)
-C
34 push
$(
MAKE
)
-C
35 push
$(
MAKE
)
-C
36 push
This diff is collapsed.
Click to expand it.