diff options
author | zeyu zhu <zhu.zeyu@zte.com.cn> | 2016-11-11 15:37:43 +0800 |
---|---|---|
committer | zeyu zhu <zhu.zeyu@zte.com.cn> | 2016-11-11 15:38:01 +0800 |
commit | c86717276af969766d3a0ad5fbe12d61466da42b (patch) | |
tree | d49292644a8691361b06506b56675dce97b7c7ca /jjb/daisy4nfv/daisy4nfv-workspace-cleanup.sh | |
parent | f901144368a524e617da0558ec32bd1f5f1789c2 (diff) |
Add merge job to Daisy4nfv CI
Change-Id: I42e828663af780ab596477741d1d34c985c86197
Signed-off-by: zeyu zhu <zhu.zeyu@zte.com.cn>
Diffstat (limited to 'jjb/daisy4nfv/daisy4nfv-workspace-cleanup.sh')
-rwxr-xr-x | jjb/daisy4nfv/daisy4nfv-workspace-cleanup.sh | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/jjb/daisy4nfv/daisy4nfv-workspace-cleanup.sh b/jjb/daisy4nfv/daisy4nfv-workspace-cleanup.sh new file mode 100755 index 000000000..26f7e9a01 --- /dev/null +++ b/jjb/daisy4nfv/daisy4nfv-workspace-cleanup.sh @@ -0,0 +1,16 @@ +#!/bin/bash +############################################################################## +# Copyright (c) 2016 ZTE Coreporation and others. +# hu.zhijiang@zte.com.cn +# sun.jing22@zte.com.cn +# All rights reserved. This program and the accompanying materials +# are made available under the terms of the Apache License, Version 2.0 +# which accompanies this distribution, and is available at +# http://www.apache.org/licenses/LICENSE-2.0 +############################################################################## +set -o errexit +set -o nounset +set -o pipefail + +# delete the $WORKSPACE to open some space +/bin/rm -rf $WORKSPACE |