Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MariaDB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
711e8c56
Commit
711e8c56
authored
Jan 12, 2018
by
Otto Kekäläinen
Committed by
Vicențiu-Marian Ciorbaru
Jan 16, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MDEV-12642: Build deb source packages on buildbot, just not on Travis-CI
parent
a41192de
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
3 deletions
+11
-3
debian/autobake-deb.sh
debian/autobake-deb.sh
+11
-3
No files found.
debian/autobake-deb.sh
View file @
711e8c56
...
@@ -111,12 +111,20 @@ dch -b -D ${CODENAME} -v "${UPSTREAM}${PATCHLEVEL}~${CODENAME}" "Automatic build
...
@@ -111,12 +111,20 @@ dch -b -D ${CODENAME} -v "${UPSTREAM}${PATCHLEVEL}~${CODENAME}" "Automatic build
echo
"Creating package version
${
UPSTREAM
}${
PATCHLEVEL
}
~
${
CODENAME
}
... "
echo
"Creating package version
${
UPSTREAM
}${
PATCHLEVEL
}
~
${
CODENAME
}
... "
# On Travis CI, use -b to build binary only packages as there is no need to
# waste time on generating the source package.
if
[[
$TRAVIS
]]
then
BUILDPACKAGE_FLAGS
=
"-b"
fi
# Build the package
# Build the package
# Pass -I so that .git and other unnecessary temporary and source control files
# Pass -I so that .git and other unnecessary temporary and source control files
# will be ignored by dpkg-source when creating the tar.gz source package.
# will be ignored by dpkg-source when creating the tar.gz source package.
# Use -b to build binary only packages as there is no need to waste time on
fakeroot dpkg-buildpackage
-us
-uc
-I
$BUILDPACKAGE_FLAGS
# generating the source package.
fakeroot dpkg-buildpackage
-us
-uc
-I
-b
# If the step above fails due to missing dependencies, you can manually run
# sudo mk-build-deps debian/control -r -i
# Don't log package contents on Travis-CI to save time and log size
# Don't log package contents on Travis-CI to save time and log size
if
[[
!
$TRAVIS
]]
if
[[
!
$TRAVIS
]]
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment