We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 614af66 commit 4968b34Copy full SHA for 4968b34
spread/build/ubuntu/task.yaml
@@ -12,16 +12,19 @@ summary: Build Ubuntu packages
12
execute: |
13
cd $SPREAD_PATH
14
15
+ NODBG=$( [[ "${DEB_BUILD_OPTIONS}" != *nostrip* ]] && echo true || echo false )
16
+
17
# Add Mir dev PPA for any out-of-archive packages needed
18
# (Currently: a newer version of WLCS)
- add-apt-repository ppa:mir-team/dev
19
+ add-apt-repository ppa:mir-team/dev --component "main $( $NODBG || echo main/debug )"
20
21
# to get dpkg-architecture and mk-build-deps
22
apt-get install \
23
--yes \
24
ccache \
25
devscripts \
- dpkg-dev
26
+ dpkg-dev \
27
+ $( $NODBG || echo wlcs-dbgsym )
28
29
# set host and build environment up
30
source <( dpkg-architecture --print-set --host-arch ${ARCH} )
0 commit comments