blob: cc15ab61a68599340ed3a7b06942163774916341 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
#!/bin/bash
cd clientdata
rm -rf public
mkdir public
mkdir shared
echo >shared/error.log
echo ${CI_BUILD_ID} >shared/buildid.log
function gitclone {
git clone $*
if [ "$?" != 0 ]; then
sleep 1s
git clone $*
if [ "$?" != 0 ]; then
sleep 3s
git clone $*
fi
fi
}
cd ..
ln -s clientdata client-data
rm -rf music
gitclone https://gitlab.com/evol/evol-music.git music
cd tools/testxml
./xsdcheck.sh
export RES=$(cat errors.txt)
if [[ -n "${RES}" ]]; then
echo "xml check failed"
echo "xml check failed" >../../clientdata/shared/error.log
echo ${RES} >>../../clientdata/shared/error.log
exit 0
fi
echo >../../clientdata/shared/error.log
./testxml.py silent >../../clientdata/shared/error.log
if [ "$?" != 0 ]; then
echo "test xml error"
exit 0
fi
echo >../../clientdata/shared/error.log
cd ../update
./createnew.sh
./create_music.sh
cp -r upload/* ../../clientdata/public
ls ../../clientdata/public
|