Mercurial > people > ptisnovs > daily_tests
changeset 11:486baf9179a3 draft
Added script to send results to given URL.
author | Pavel Tisnovsky <ptisnovs@redhat.com> |
---|---|
date | Mon, 14 Apr 2014 14:08:54 +0200 |
parents | 8f2c4e6ef4bc |
children | b14d38ca6619 |
files | ChangeLog tck7/scripts/send_without_zip.sh |
diffstat | 2 files changed, 61 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/ChangeLog Mon Apr 14 10:09:55 2014 +0200 +++ b/ChangeLog Mon Apr 14 14:08:54 2014 +0200 @@ -1,3 +1,8 @@ +2014-04-14 Pavel Tisnovsky <ptisnovs@redhat.com> + + * tck7/scripts/send_without_zip.sh: + Added script to send results to given URL. + 2014-04-14 Pavel Tisnovsky <ptisnovs@redhat.com> * tck7/scripts/cur_date_week.sh:
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tck7/scripts/send_without_zip.sh Mon Apr 14 14:08:54 2014 +0200 @@ -0,0 +1,56 @@ +#!/usr/bin/env 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. +# +# Sometimes it's needed to simply copy results to result URL w/o gzipping results. +# +# Author: Pavel Tisnovsky +# e-mail: ptisnovs@redhat.com + +DATE=`date +%Y%m%d` +RESULT_URL=`cat ../result.url` + +function process_results() +{ + scp -r $dir ${RESULT_URL}/jck7/$3/$2 +} + +cd /jck/results +process_results ${DATE}-1 ${DATE}-1 IcedTea7 +process_results ${DATE}-2 ${DATE}-1 IcedTea7-2.3 +process_results ${DATE}-3 ${DATE}-1 IcedTea7-2.4 +