mirror of https://github.com/apache/maven.git
switch to subversion
git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@164055 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
3aea101d3c
commit
b556c05cec
10
ci.sh
10
ci.sh
|
@ -41,8 +41,6 @@ if [ -f $HOME_DIR/build_required ]; then
|
||||||
BUILD_REQUIRED=`cat $HOME_DIR/build_required`
|
BUILD_REQUIRED=`cat $HOME_DIR/build_required`
|
||||||
fi
|
fi
|
||||||
|
|
||||||
export CVSROOT=:pserver:anoncvs@cvs.apache.org:/home/cvspublic
|
|
||||||
|
|
||||||
(
|
(
|
||||||
if [ "$CMD" = "checkout" ]
|
if [ "$CMD" = "checkout" ]
|
||||||
then
|
then
|
||||||
|
@ -62,7 +60,7 @@ export CVSROOT=:pserver:anoncvs@cvs.apache.org:/home/cvspublic
|
||||||
(
|
(
|
||||||
cd $DIR
|
cd $DIR
|
||||||
|
|
||||||
cvs co maven-components > $HOME_DIR/$SCM_LOG 2>&1
|
svn co http://svn.apache.org/repos/asf/maven/components/trunk maven-components > $HOME_DIR/$SCM_LOG 2>&1
|
||||||
|
|
||||||
echo "true" > $HOME_DIR/build_required
|
echo "true" > $HOME_DIR/build_required
|
||||||
)
|
)
|
||||||
|
@ -76,9 +74,9 @@ export CVSROOT=:pserver:anoncvs@cvs.apache.org:/home/cvspublic
|
||||||
(
|
(
|
||||||
cd $DIR/maven-components
|
cd $DIR/maven-components
|
||||||
|
|
||||||
cvs update -dP > $HOME_DIR/$SCM_LOG 2>&1
|
svn update > $HOME_DIR/$SCM_LOG 2>&1
|
||||||
|
|
||||||
grep ^[PU] $HOME_DIR/$SCM_LOG > /dev/null 2>&1
|
grep "^[PUAD] " $HOME_DIR/$SCM_LOG > /dev/null 2>&1
|
||||||
|
|
||||||
if [ "$?" = "1" ]
|
if [ "$?" = "1" ]
|
||||||
then
|
then
|
||||||
|
@ -102,7 +100,7 @@ export CVSROOT=:pserver:anoncvs@cvs.apache.org:/home/cvspublic
|
||||||
|
|
||||||
echo "Updates occured, build required ..."
|
echo "Updates occured, build required ..."
|
||||||
echo
|
echo
|
||||||
grep ^[PU] $HOME_DIR/$SCM_LOG
|
grep "^[PUAD] " $HOME_DIR/$SCM_LOG
|
||||||
echo
|
echo
|
||||||
|
|
||||||
(
|
(
|
||||||
|
|
Loading…
Reference in New Issue