Skip to content

Commit a054816

Browse files
nightly-dev (#33876)
* dev * installer' * remove * debug
1 parent 22a1b40 commit a054816

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

Jenkinsfile

+1
Original file line numberDiff line numberDiff line change
@@ -165,6 +165,7 @@ node {
165165
if (env.BRANCH_NAME == 'master-ci') {
166166
deviceStage("build nightly", "tici-needs-can", [], [
167167
["build nightly", "RELEASE_BRANCH=nightly $SOURCE_DIR/release/build_release.sh"],
168+
["build nightly-dev", "PANDA_DEBUG_BUILD=1 RELEASE_BRANCH=nightly-dev $SOURCE_DIR/release/build_release.sh"],
168169
])
169170
}
170171

release/build_release.sh

+7-2
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,13 @@ git commit -a -m "openpilot v$VERSION release"
5050
export PYTHONPATH="$BUILD_DIR"
5151
scons -j$(nproc) --minimal
5252

53-
# release panda fw
54-
CERT=/data/pandaextra/certs/release RELEASE=1 scons -j$(nproc) panda/
53+
if [ -z "PANDA_DEBUG_BUILD" ]; then
54+
# release panda fw
55+
CERT=/data/pandaextra/certs/release RELEASE=1 scons -j$(nproc) panda/
56+
else
57+
# build with ALLOW_DEBUG=1 to enable features like experimental longitudinal
58+
scons -j$(nproc) panda/
59+
fi
5560

5661
# Ensure no submodules in release
5762
if test "$(git submodule--helper list | wc -l)" -gt "0"; then

0 commit comments

Comments
 (0)