Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
scripts
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
scripts
Commits
5041b56d
Commit
5041b56d
authored
2 years ago
by
Henrik Triem
Browse files
Options
Downloads
Patches
Plain Diff
Require only a single .rpm file when uploading
parent
f37dcd39
No related branches found
No related tags found
1 merge request
!8
Require only a single .rpm file when uploading
Pipeline
#27015
passed
2 years ago
Stage: lint
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
icinga-build-upload-aptly
+2
-8
2 additions, 8 deletions
icinga-build-upload-aptly
icinga-build-upload-aptly-subscription
+1
-7
1 addition, 7 deletions
icinga-build-upload-aptly-subscription
with
3 additions
and
15 deletions
icinga-build-upload-aptly
+
2
−
8
View file @
5041b56d
...
...
@@ -31,16 +31,10 @@ def scan_dir(path, pattern):
return
found
def
detect_rpm
(
path
):
source
=
scan_dir
(
path
,
'
*.src.rpm
'
)
rpms
=
scan_dir
(
path
,
'
*.rpm
'
)
if
len
(
source
)
==
0
:
if
len
(
rpm
)
==
0
:
return
[]
elif
len
(
source
)
!=
1
:
raise
StandardError
,
'
There more than one source RPM in
'
+
path
if
len
(
rpms
)
<
2
:
raise
StandardError
,
'
There should be at least 2 RPMS in
'
+
path
return
rpms
def
detect_deb
(
path
):
...
...
This diff is collapsed.
Click to expand it.
icinga-build-upload-aptly-subscription
+
1
−
7
View file @
5041b56d
...
...
@@ -31,15 +31,9 @@ def scan_dir(path, pattern):
return
found
def
detect_rpm
(
path
):
source
=
scan_dir
(
path
,
'
*.src.rpm
'
)
rpms
=
scan_dir
(
path
,
'
*.rpm
'
)
if
len
(
source
)
==
0
:
if
len
(
rpm
)
==
0
:
return
[]
elif
len
(
source
)
!=
1
:
raise
StandardError
,
'
There more than one source RPM in
'
+
path
if
len
(
rpms
)
<
2
:
raise
StandardError
,
'
There should be at least 2 RPMS in
'
+
path
return
rpms
...
...
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