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
738c5c84
Commit
738c5c84
authored
Jan 12, 2018
by
Otto Kekäläinen
Committed by
Otto Kekäläinen
Jun 05, 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
8dc70c86
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 @
738c5c84
...
...
@@ -107,12 +107,20 @@ dch -b -D ${CODENAME} -v "${EPOCH}${UPSTREAM}${PATCHLEVEL}~${CODENAME}" "Automat
echo
"Creating package version
${
EPOCH
}${
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
# 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.
# Use -b to build binary only packages as there is no need to waste time on
# generating the source package.
fakeroot dpkg-buildpackage
-us
-uc
-I
-b
fakeroot dpkg-buildpackage
-us
-uc
-I
$BUILDPACKAGE_FLAGS
# 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
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