diff options
author | Alexander Couzens <lynxis@fe80.eu> | 2016-07-23 00:11:16 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2016-07-23 10:45:23 -0400 |
commit | 92c5c7f2fd85289f776860d826f8b61fdd6a8dbc (patch) | |
tree | 8b7268bb82d076bef8c847172f01bb599e47d994 /bin | |
parent | 90a8253db9a9d9fa23eff0af1d3ffa42c65fc60b (diff) | |
download | jenkins.debian.net-92c5c7f2fd85289f776860d826f8b61fdd6a8dbc.tar.xz |
openwrt_common: make save_openwrt_log more flexible to support lede
Signed-off-by: Holger Levsen <holger@layer-acht.org>
Diffstat (limited to 'bin')
-rw-r--r-- | bin/reproducible_openwrt_common.sh | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/bin/reproducible_openwrt_common.sh b/bin/reproducible_openwrt_common.sh index 745a601c..c280d05c 100644 --- a/bin/reproducible_openwrt_common.sh +++ b/bin/reproducible_openwrt_common.sh @@ -22,10 +22,13 @@ create_results_dirs() { mkdir -p $BASE/openwrt/dbd } -save_openwrt_logs() { - local postfix="$1" +# type = openwrt or lede +# postfix = we use the postfix to save difference of the first and second build +save_logs() { + local type="$1" + local postfix="$2" - tar cJf "$BASE/openwrt/dbd/logs_${postfix}.tar.xz" logs/ + tar cJf "$BASE/${type}/dbd/logs_${postfix}.tar.xz" logs/ } save_lede_results() { @@ -157,7 +160,7 @@ build_two_times() { [ "$TYPE" = "openwrt" ] && save_openwrt_results b1 # copy logs - save_openwrt_logs b1 + save_logs $TYPE b1 # clean up between builds openwrt_cleanup @@ -179,7 +182,7 @@ build_two_times() { [ "$TYPE" = "openwrt" ] && save_openwrt_results b2 # copy logs - save_openwrt_logs b2 + save_logs $TYPE b2 # reset environment to default values again export LANG="en_GB.UTF-8" |