This commit is contained in:
liuyq-617 2021-08-16 16:27:36 +08:00
parent 94beba1125
commit 12babe9dcb
2 changed files with 4 additions and 4 deletions

2
Jenkinsfile vendored
View File

@ -237,7 +237,7 @@ pipeline {
'''
sh '''
cd ${WKC}/tests/examples/C#/taosdemo
mcs -out:taosdemo *.cs
mcs -out:taosdemo *.cs > /dev/null 2>&1
echo '' |./taosdemo
'''
sh '''

View File

@ -15,8 +15,8 @@ script_dir="$(dirname $(readlink -f $0))"
###### step 3: start build
cd $script_dir
rm -f go.*
go mod init demotest
go mod tidy
go build
go mod init demotest > /dev/null 2>&1
go mod tidy > /dev/null 2>&1
go build > /dev/null 2>&1
sleep 1s
./demotest -h $1 -p $2