From db570376ec442b64c64e234f1a2e29c85c12ecf3 Mon Sep 17 00:00:00 2001 From: Markos Chandras Date: Tue, 5 Dec 2017 15:22:57 +0000 Subject: [PATCH] test-log-collect.sh: Collect all environment variables We export many variables throughout the CI jobs so it's helpful to collect them all as part of the job results. Change-Id: Ic12bb7efa6e841108d56a9368917157c4e104c77 --- test-log-collect.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test-log-collect.sh b/test-log-collect.sh index f6272189..8381eadb 100755 --- a/test-log-collect.sh +++ b/test-log-collect.sh @@ -162,6 +162,9 @@ fi # Get a dmesg output so we can look for kernel failures dmesg > "${WORKING_DIR}/logs/dmesg.log.txt" || true +# Collect job environment +env > "${WORKING_DIR}/logs/environment.txt" || true + # output ram usage free -m > "${WORKING_DIR}/logs/memory-available.txt" || true