Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions helpers.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Common helper functions for all scripts

set -o pipefail
[ "${CI_SCRIPT_DEBUG-0}" = "1" ] && set -x

function indent { sed 's/^/| /'; echo "|--" ;}
function status { echo == $(date "+%F %T") $* ; }
Expand Down
2 changes: 2 additions & 0 deletions lmp/bb-config.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ FIO_PUSH_BIN="${FIO_PUSH_BIN-/usr/bin/fiopush}"
FIO_CHECK_BIN="${FIO_CHECK_BIN-/usr/bin/fiocheck}"
OSTREE_API_VERSION="${OSTREE_API_VERSION-v2}"
DEV_MODE="${DEV_MODE-0}"
# Enable bash trace mode (set -x) for debugging ci-scripts
CI_SCRIPT_DEBUG="${CI_SCRIPT_DEBUG-0}"
BUILD_SDK="${BUILD_SDK-0}"
LMP_ROLLBACK_PROTECTION_ENABLE="${LMP_ROLLBACK_PROTECTION_ENABLE-0}"
DISABLE_LOGCONFIG="${DISABLE_LOGCONFIG-0}"
Expand Down
2 changes: 2 additions & 0 deletions lmp/bb-selftest.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#!/bin/bash -e

[ "${CI_SCRIPT_DEBUG-0}" = "1" ] && set -x

source setup-environment build

# The oe-selftest reproducible is build in two step (A and B) and sharing
Expand Down
Loading