Skip to main content
summaryrefslogblamecommitdiffstats
blob: f69bb17147b72a87b02bf443a4a8d94225283a2f (plain) (tree)
1
2
3
4
5
6
7
8
9
10









                                                                                
           
                               
                                                                                                                         
                                                 
                         

              
              
                                                                              

                                                                                                                                            
#*******************************************************************************
# Copyright (c) 2008, 2010 Obeo.
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Eclipse Public License v1.0
# which accompanies this distribution, and is available at
# http://www.eclipse.org/legal/epl-v10.html
#
# Contributors:
#     Obeo - initial API and implementation
#*******************************************************************************
#!/bin/bash
PROMO_LOGS_DIR=$HOME/promo_logs
RELENG_DIR="/opt/users/hudsonbuild/.hudson/jobs/emf-eef-integration/workspace/org.eclipse.emf/org.eclipse.emf.eef/releng"
ANT="/opt/public/common/apache-ant-1.7.1/bin/ant"
logFile=$HOME/cronLog.txt

rm -f $logFile
touch $logFile
echo "[`date +%Y/%m/%d\ %H:%M`]: publishing integration build ..." >> $logFile
mkdir -p $PROMO_LOGS_DIR
$ANT -f $RELENG_DIR/promote.xml -Dpromote.properties=$RELENG_DIR/promote-I.properties 2>/dev/null 1> $PROMO_LOGS_DIR/cbi-emf-eef-promo-I.txt

Back to the top