update
This commit is contained in:
parent
2cf19c866c
commit
6c5288b2eb
|
@ -227,24 +227,21 @@ pipeline {
|
||||||
sh '''
|
sh '''
|
||||||
rm -rf /var/lib/taos/*
|
rm -rf /var/lib/taos/*
|
||||||
rm -rf /var/log/taos/*
|
rm -rf /var/log/taos/*
|
||||||
nohup taosd >/dev/null
|
nohup taosd >/dev/null &
|
||||||
sleep 10
|
sleep 10
|
||||||
'''
|
'''
|
||||||
sh '''
|
sh '''
|
||||||
cd ${WKC}/tests/examples/nodejs
|
cd ${WKC}/tests/examples/nodejs
|
||||||
git clean -dfx
|
npm install td2.0-connector > /dev/null 2>&1
|
||||||
npm install td2.0-connector
|
|
||||||
node nodejsChecker.js host=localhost
|
node nodejsChecker.js host=localhost
|
||||||
'''
|
'''
|
||||||
sh '''
|
sh '''
|
||||||
cd ${WKC}/tests/examples/C#/taosdemo
|
cd ${WKC}/tests/examples/C#/taosdemo
|
||||||
git clean -dfx
|
|
||||||
mcs -out:taosdemo *.cs
|
mcs -out:taosdemo *.cs
|
||||||
./taosdemo
|
echo '' |./taosdemo
|
||||||
'''
|
'''
|
||||||
sh '''
|
sh '''
|
||||||
cd ${WKC}/tests/gotest
|
cd ${WKC}/tests/gotest
|
||||||
git clean -dfx
|
|
||||||
bash batchtest.sh
|
bash batchtest.sh
|
||||||
'''
|
'''
|
||||||
sh '''
|
sh '''
|
||||||
|
|
|
@ -369,8 +369,6 @@ python3 ./test.py -f insert/insert_locking.py
|
||||||
python3 ./test.py -f alter/alter_debugFlag.py
|
python3 ./test.py -f alter/alter_debugFlag.py
|
||||||
python3 ./test.py -f query/queryBetweenAnd.py
|
python3 ./test.py -f query/queryBetweenAnd.py
|
||||||
python3 ./test.py -f tag_lite/alter_tag.py
|
python3 ./test.py -f tag_lite/alter_tag.py
|
||||||
|
|
||||||
|
|
||||||
python3 test.py -f tools/taosdemoAllTest/TD-4985/query-limit-offset.py
|
python3 test.py -f tools/taosdemoAllTest/TD-4985/query-limit-offset.py
|
||||||
python3 test.py -f tools/taosdemoAllTest/TD-5213/insert4096columns_not_use_taosdemo.py
|
python3 test.py -f tools/taosdemoAllTest/TD-5213/insert4096columns_not_use_taosdemo.py
|
||||||
python3 test.py -f tools/taosdemoAllTest/TD-5213/insertSigcolumnsNum4096.py
|
python3 test.py -f tools/taosdemoAllTest/TD-5213/insertSigcolumnsNum4096.py
|
||||||
|
|
|
@ -12,7 +12,7 @@ IN_TDINTERNAL="community"
|
||||||
|
|
||||||
function stopTaosd {
|
function stopTaosd {
|
||||||
echo "Stop taosd"
|
echo "Stop taosd"
|
||||||
sudo systemctl stop taosd
|
sudo systemctl stop taosd || echo 'no sudo or systemctl or stop fail'
|
||||||
PID=`ps -ef|grep -w taosd | grep -v grep | awk '{print $2}'`
|
PID=`ps -ef|grep -w taosd | grep -v grep | awk '{print $2}'`
|
||||||
while [ -n "$PID" ]
|
while [ -n "$PID" ]
|
||||||
do
|
do
|
||||||
|
|
Loading…
Reference in New Issue