remove systemctl
This commit is contained in:
parent
aac0aeddfd
commit
a9c51e251a
|
@ -119,7 +119,7 @@ pipeline {
|
||||||
}
|
}
|
||||||
|
|
||||||
sh'''
|
sh'''
|
||||||
systemctl start taosd
|
nohup taosd >/dev/null &
|
||||||
sleep 10
|
sleep 10
|
||||||
'''
|
'''
|
||||||
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
|
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
|
||||||
|
@ -155,7 +155,7 @@ pipeline {
|
||||||
'''
|
'''
|
||||||
}
|
}
|
||||||
sh '''
|
sh '''
|
||||||
systemctl stop taosd
|
pkill -9 taosd
|
||||||
cd ${WKC}/tests
|
cd ${WKC}/tests
|
||||||
./test-all.sh b2
|
./test-all.sh b2
|
||||||
date
|
date
|
||||||
|
|
|
@ -119,7 +119,7 @@ pipeline {
|
||||||
}
|
}
|
||||||
|
|
||||||
sh'''
|
sh'''
|
||||||
systemctl start taosd
|
nohup taosd >/dev/null &
|
||||||
sleep 10
|
sleep 10
|
||||||
'''
|
'''
|
||||||
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
|
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
|
||||||
|
@ -163,7 +163,7 @@ pipeline {
|
||||||
'''
|
'''
|
||||||
}
|
}
|
||||||
sh '''
|
sh '''
|
||||||
systemctl stop taosd
|
pkill -9 taosd
|
||||||
cd ${WKC}/tests
|
cd ${WKC}/tests
|
||||||
./test-all.sh b2
|
./test-all.sh b2
|
||||||
date
|
date
|
||||||
|
|
Loading…
Reference in New Issue