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
Commits
c5decb23
Commit
c5decb23
authored
4 years ago
by
Henrik Triem
Browse files
Options
Downloads
Patches
Plain Diff
Add support for Fedora 32
parent
17c8b20e
No related branches found
No related tags found
1 merge request
!2
Add support for Fedora 32
Pipeline
#9549
passed
4 years ago
Stage: build
Changes
4
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
.gitlab-ci.yml
+3
-0
3 additions, 0 deletions
.gitlab-ci.yml
32/Dockerfile
+24
-0
24 additions, 0 deletions
32/Dockerfile
32/Makefile
+2
-0
2 additions, 0 deletions
32/Makefile
Makefile
+2
-0
2 additions, 0 deletions
Makefile
with
31 additions
and
0 deletions
.gitlab-ci.yml
+
3
−
0
View file @
c5decb23
...
...
@@ -26,3 +26,6 @@ before_script:
'
31'
:
<<
:
*build_job
'
32'
:
<<
:
*build_job
This diff is collapsed.
Click to expand it.
32/Dockerfile
0 → 100644
+
24
−
0
View file @
c5decb23
FROM
fedora:32
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"]
This diff is collapsed.
Click to expand it.
32/Makefile
0 → 100644
+
2
−
0
View file @
c5decb23
VARIANT
:=
x86_64
include
../image.mk
This diff is collapsed.
Click to expand it.
Makefile
+
2
−
0
View file @
c5decb23
...
...
@@ -2,8 +2,10 @@ all:
$(
MAKE
)
-C
29
$(
MAKE
)
-C
30
$(
MAKE
)
-C
31
$(
MAKE
)
-C
32
push
:
$(
MAKE
)
-C
29 push
$(
MAKE
)
-C
30 push
$(
MAKE
)
-C
31 push
$(
MAKE
)
-C
32 push
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment