You are viewing a plain text version of this content. The canonical link for it is here.
Posted to m2-dev@maven.apache.org by jv...@apache.org on 2004/06/16 05:28:50 UTC

cvs commit: maven-components ci.sh

jvanzyl     2004/06/15 20:28:50

  Modified:    .        ci.sh
  Log:
  o add the execution of the integration tests to the end of the run.
  
  Revision  Changes    Path
  1.22      +23 -2     maven-components/ci.sh
  
  Index: ci.sh
  ===================================================================
  RCS file: /home/cvs/maven-components/ci.sh,v
  retrieving revision 1.21
  retrieving revision 1.22
  diff -u -r1.21 -r1.22
  --- ci.sh	3 Jun 2004 19:04:44 -0000	1.21
  +++ ci.sh	16 Jun 2004 03:28:50 -0000	1.22
  @@ -17,7 +17,7 @@
   
   export JAVA_HOME=/usr/local/java
   export MBOOT_HOME=$HOME/mboot
  -export M2_HOME=$HOME/maven
  +export M2_HOME=$HOME/m2
   export PATH=$PATH:$MBOOT_HOME:$M2_HOME/bin:$JAVA_HOME/bin
   
   # ----------------------------------------------------------------------------------
  @@ -28,7 +28,7 @@
   
   HOME_DIR=`pwd`
   DATE=`date`
  -DIR=m2
  +DIR=m2-build
   REPO=maven-repo-local
   FROM=jvanzyl@maven.org
   #TO=maven2-user@lists.codehaus.org
  @@ -143,6 +143,27 @@
   ) >> log 2>&1
   
   BUILD_REQUIRED=`cat $HOME_DIR/build_required`
  +
  +## Build the verifier
  +
  +( 
  +  cd $DIR/maven-components/maven-core-it-verifier
  +  
  +  mboot
  +)
  +
  +(
  +  cd $DIR/maven-components/maven-core-it
  +
  +  echo
  +  
  +  echo "Running maven-core integration tests ..."
  +
  +  echo ""
  +  
  +  ./maven-core-it.sh 
  +
  +) >> log 2>&1 
   
   # Only send mail to the list if a build was required.