Skip to content

Commit e1e1777

Browse files
committed
Print debug info
Signed-off-by: Bence Szépkúti <bence.szepkuti@arm.com>
1 parent bae1e3b commit e1e1777

File tree

1 file changed

+20
-1
lines changed

1 file changed

+20
-1
lines changed

vars/common.groovy

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,16 @@ List<BranchInfo> get_branch_information(Collection<String> tls_branches, Collect
282282
mbedtls_node('container-host') {
283283
try {
284284
// Log the environment for debugging purposes
285-
sh script: 'export'
285+
sh script: '''\
286+
export
287+
id -u
288+
id -g
289+
groups
290+
uname -a
291+
sudo sysctl vm.mmap_rnd_bits
292+
type git || true
293+
cat /proc/cmdline || true
294+
'''
286295

287296
dir('src') {
288297
deleteDir()
@@ -330,6 +339,16 @@ List<BranchInfo> get_branch_information(Collection<String> tls_branches, Collect
330339
linux_platforms.each { platform ->
331340
list_components_jobs << gen_jobs.job(info.prefix + platform) {
332341
mbedtls_node(gen_jobs.node_label_for_platform(platform)) {
342+
sh script: '''\
343+
export
344+
id -u
345+
id -g
346+
groups
347+
uname -a
348+
sudo sysctl vm.mmap_rnd_bits
349+
type git || true
350+
cat /proc/cmdline || true
351+
'''
333352
try {
334353
dir('src') {
335354
deleteDir()

0 commit comments

Comments
 (0)