diff options
author | Sven Gothel <[email protected]> | 2012-02-15 14:51:18 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2012-02-15 14:51:18 +0100 |
commit | da2ad45f6ff5d2d69524993c5f64684242a2f11d (patch) | |
tree | a64f9cdcbe75f7e616d9a382847feba06d83e750 | |
parent | 8bbc86966df44f60f45f5ffe3061a7907cd68810 (diff) |
Merge test-results and remove the jogamp-os.and.arch subfolder
-rwxr-xr-x | jenkins-builds/funcs_promotion.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/jenkins-builds/funcs_promotion.sh b/jenkins-builds/funcs_promotion.sh index 2b31e78..7623be6 100755 --- a/jenkins-builds/funcs_promotion.sh +++ b/jenkins-builds/funcs_promotion.sh @@ -332,11 +332,11 @@ function prom_cleanup() { rm -rf tmp # remove the platform 7z files of the local archive folder + # and merge the test-results + mkdir -p test-results for i in $os_and_archs ; do - for j in gluegen joal jocl jogl ; do - local zfile=archive/jogamp-$i/$j-$i.7z - rm -v $zfile - done + mv -v jogamp-$i/test-results/* test-results/ + rm -rf jogamp-$i done cd $lthisdir } |