Commit 2f0757c6 authored by YannGarcia's avatar YannGarcia
Browse files

Enhance virtualization scripts

parent 4a124d90
Loading
Loading
Loading
Loading
+12 −2
Original line number Diff line number Diff line
@@ -6,7 +6,7 @@ set -vx
echo -e "*****************************\n* Checkout TTF011 sources\n*****************************\n"
cd ${HOME}/dev || exit 1

git clone --recurse-submodules --single-branch https://forge.etsi.org/gitlab/ITS/ITS.git TTF011_Its
git clone --recurse-submodules --single-branch https://forge.etsi.org/rep/ITS/TS.ITS.git TTF011_Its
cd ./TTF011_Its
for i in `find ./ttcn -type d -name "Ats*"`
do
@@ -14,10 +14,20 @@ do
    git checkout devel
    cd -
done
for i in `find ./ttcn -type d -name "asn1"`
for i in `find ./ttcn/Ats* -type d -name "asn1"`
do
    cd $i
    git checkout testing
    SUB_DIRS=`find . -type d`
    if [ "SUB_DIRS" != "" ]
    then
        for j in $SUB_DIRS
        do
            cd $j
            git checkout testing
            cd -
        done
    fi
    cd -
done
cd /home/etsi/dev/TTF011_Its/ttcn/LibIts
Compare 9f1990e0 to 935f56da
Original line number Diff line number Diff line
Subproject commit 9f1990e0aee9720b6e2194f7d8242549f5eaab9b
Subproject commit 935f56da09eedf19713c463e0c2b72b4426046e6
+12 −2
Original line number Diff line number Diff line
@@ -73,7 +73,7 @@ then
fi

cd /home/vagrant/dev
git clone --recurse-submodules --single-branch https://forge.etsi.org/gitlab/ITS/ITS.git TTF011_Its
git clone --recurse-submodules --single-branch https://forge.etsi.org/rep/ITS/TS.ITS.git TTF011_Its
cd ./TTF011_Its
for i in `find ./ttcn -type d -name "Ats*"`
do
@@ -81,10 +81,20 @@ do
    git checkout devel
    cd -
done
for i in `find ./ttcn -type d -name "asn1"`
for i in `find ./ttcn/Ats* -type d -name "asn1"`
do
    cd $i
    git checkout testing
    SUB_DIRS=`find . -type d`
    if [ "SUB_DIRS" != "" ]
    then
        for j in $SUB_DIRS
        do
            cd $j
            git checkout testing
            cd -
        done
    fi
    cd -
done
cd /home/etsi/dev/TTF011_Its/ttcn/LibIts