diff options
author | Gary Wu <gary.i.wu@huawei.com> | 2018-05-03 16:03:24 -0700 |
---|---|---|
committer | Gary Wu <gary.i.wu@huawei.com> | 2018-05-03 16:08:01 -0700 |
commit | 7087ff627c74cea2ccf09ee0d9dc2b3447688069 (patch) | |
tree | 5741d10704761d56c4547d2909ddf7fa74237ab5 | |
parent | 08f0ae97d6894c77c09092c126b4870e31821ce5 (diff) |
Change source console timestamp log file name
Change source console timestamp log file name to
avoid having it overwritten by the local Jenkins.
Change-Id: I16e4ab20064e013366884de9964f5eeb0b8ce82f
Issue-ID: INT-401
Signed-off-by: Gary Wu <gary.i.wu@huawei.com>
-rw-r--r-- | jjb/lab/include-raw-lab-retrieve-logs.sh | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/jjb/lab/include-raw-lab-retrieve-logs.sh b/jjb/lab/include-raw-lab-retrieve-logs.sh index 2e51d359c..9b0b00cd7 100644 --- a/jjb/lab/include-raw-lab-retrieve-logs.sh +++ b/jjb/lab/include-raw-lab-retrieve-logs.sh @@ -5,10 +5,11 @@ echo Job triggered by $SRC_BUILD_URL echo Retriving logs from $LOG_DIR_URL rm -rf archives +mkdir -p archives +curl -f "$SRC_BUILD_URL/timestamps/?time=HH:mm:ssZ&appendLog" > archives/console-source-timestamp.log wget -r -nv -nd --no-parent -l 1 --reject="index.html*" -P archives "$LOG_DIR_URL" -curl -f "$SRC_BUILD_URL/timestamps?time=HH:mm:ssZ&appendLog" > archives/console-timestamp.log -if [ -s archives/console-timestamp.log ]; then - cat archives/console-timestamp.log +if [ -s archives/console-source-timestamp.log ]; then + cat archives/console-source-timestamp.log else cat archives/console.log fi |