Mercurial > people > ptisnovs > daily_tests
changeset 2:09a912dabc95 draft
Added script for cleaning work dirs, report dirs and build dirs.
author | Pavel Tisnovsky <ptisnovs@redhat.com> |
---|---|
date | Wed, 02 Apr 2014 09:55:16 +0200 |
parents | 72d52b764c79 |
children | e0c800ba69f7 |
files | ChangeLog tck7/clean_all.sh |
diffstat | 2 files changed, 71 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/ChangeLog Tue Apr 01 11:51:10 2014 +0200 +++ b/ChangeLog Wed Apr 02 09:55:16 2014 +0200 @@ -1,3 +1,8 @@ +2014-04-02 Pavel Tisnovsky <ptisnovs@redhat.com> + + * tck7/clean_all.sh: + Added script for cleaning work dirs, report dirs and build dirs. + 2014-04-01 Pavel Tisnovsky <ptisnovs@redhat.com> * tck7/patches/Icedtea7_forest/java-1.7.0-openjdk-disable-system-lcms.patch:
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tck7/clean_all.sh Wed Apr 02 09:55:16 2014 +0200 @@ -0,0 +1,66 @@ +#!/usr/bin/bash + +# Daily test builder. +# +# Copyright (C) 2009, 2010, 2011, 2012, 2013, 2014 Red Hat +# +# This tool is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2, or (at your option) +# any later version. +# +# This tool is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with IcedTea; see the file COPYING. If not, write to the +# Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA +# 02110-1301 USA. +# +# Linking this library statically or dynamically with other modules is +# making a combined work based on this library. Thus, the terms and +# conditions of the GNU General Public License cover the whole +# combination. +# +# As a special exception, the copyright holders of this library give you +# permission to link this library with independent modules to produce an +# executable, regardless of the license terms of these independent +# modules, and to copy and distribute the resulting executable under +# terms of your choice, provided that you also meet, for each linked +# independent module, the terms and conditions of the license of that +# module. An independent module is a module which is not derived from +# or based on this library. If you modify this library, you may extend +# this exception to your version of the library, but you are not +# obligated to do so. If you do not wish to do so, delete this +# exception statement from your version. +# +# Clean work dirs, result dirs and build dirs. +# +# Author: Pavel Tisnovsky +# e-mail: ptisnovs@redhat.com + +echo "Cleaning builds" +rm -rf /jck/daily_tests/builds/Icedtea7_forest +rm -rf /jck/daily_tests/builds/Icedtea7_forest_2_3 +rm -rf /jck/daily_tests/builds/Icedtea7_forest_2_4 + +echo "Cleaning logs" +rm -rf /jck/daily_tests/logs/* + +echo "Cleaning jtr" +rm -rf /jck/daily_tests/jtr/20* + +echo "Cleaning /jck/log/" +rm -rf /jck/log/* + +echo "Cleaning /jck/logs/" +rm -rf /jck/logs/* + +echo "Cleaning /jck/work/" +rm -rf /jck/work/* + +echo "Cleaning /jck/results/" +rm -rf /jck/results/* +