Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 7278 in orxonox.OLD for trunk/scripts/tardis-scratch-checkout.pl


Ignore:
Timestamp:
Apr 4, 2006, 1:44:04 PM (18 years ago)
Author:
bensch
Message:

better script for the checkout process

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/scripts/tardis-scratch-checkout.pl

    r7277 r7278  
    22
    33
    4 echo $_[1];
     4print $_[1];
    55$username = `whoami`;
     6chomp $username;
    67
    78
     9  mkdir ("/scratch/$username");
     10  mkdir ("/scratch/$username\/orxonox");
    811
    9 mkdir ("/scratch/$username/orxonox");
    10   svn co https://svn.orxonox.net/orxonox/trunk /scratch/orxonox/trunk
    11   cd "/scratch/$username/orxonox/trunk";
     12
     13  open(SVN_CO, "svn co https://svn.orxonox.net/orxonox/trunk /scratch/$username\/orxonox/trunk |");
     14  while(<SVN_CO>){
     15  print $_;
     16  }
     17 
     18  chdir("/scratch/$username\/orxonox/trunk");
     19
    1220
    1321  print "executing autogen.sh";
    1422  open( AUTOGEN , "./autogen.sh |");
     23  while(<AUTOGEN>){
     24   print $_;
     25  }
    1526
     27  print "executing configure for tardis";
     28  open(CONFIGURE, "./configure --with-tardis |");
     29  while(<CONFIGURE>){
     30    printf $_;
     31  }
     32  open(MAKE, "make -j3|");
     33  while(<MAKE>) {
     34    print $_;
     35  }
    1636
    17   echo "executing configure for tardis"
    18   ./configure --with-tardis
    19 
    20 
    21   make -j5
Note: See TracChangeset for help on using the changeset viewer.