Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
moose
Manage
Activity
Members
Labels
Plan
Issues
9
Issue boards
Milestones
Wiki
Code
Merge requests
2
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Sahil Moza
moose
Commits
d6db4c5a
Commit
d6db4c5a
authored
7 years ago
by
Dilawar Singh
Browse files
Options
Downloads
Patches
Plain Diff
Added shell script to build DEB and RPM packages. [skip ci]
parent
90cff455
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
build_deb.sh
+21
-0
21 additions, 0 deletions
build_deb.sh
build_rpm.sh
+22
-0
22 additions, 0 deletions
build_rpm.sh
with
43 additions
and
0 deletions
build_deb.sh
0 → 100755
+
21
−
0
View file @
d6db4c5a
#!/bin/bash -
#===============================================================================
#
# FILE: build_deb.sh
#
# USAGE: ./build_deb.sh
#
# DESCRIPTION: Generate DEBIAN package.
#
# OPTIONS: ---
# REQUIREMENTS: ---
# BUGS: ---
# NOTES: ---
# AUTHOR: Dilawar Singh (), dilawars@ncbs.res.in
# ORGANIZATION: NCBS Bangalore
# CREATED: Wednesday 07 March 2018 10:02:28 IST
# REVISION: ---
#===============================================================================
set
-o
nounset
# Treat unset variables as an error
gbp buildpackage
--git-ignore-branch
--git-ignore-new
-uc
-us
-d
|
tee
_gbp.log
This diff is collapsed.
Click to expand it.
build_rpm.sh
0 → 100755
+
22
−
0
View file @
d6db4c5a
#!/bin/bash -
#===============================================================================
#
# FILE: build_rpm.sh
#
# USAGE: ./build_rpm.sh
#
# DESCRIPTION: Generate RPM package.
#
# OPTIONS: ---
# REQUIREMENTS: ---
# BUGS: ---
# NOTES: ---
# AUTHOR: Dilawar Singh (), dilawars@ncbs.res.in
# ORGANIZATION: NCBS Bangalore
# CREATED: Wednesday 07 March 2018 10:02:28 IST
# REVISION: ---
#===============================================================================
set
-o
nounset
# Treat unset variables as an error
gbp buildpackage-rpm
--git-ignore-branch
--git-ignore-new
-uc
-us
-d
\
--git-spec-file
=
./rmp/moose.spec |
tee
_rpm.log
This diff is collapsed.
Click to expand it.
Preview
0%
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