Commit 8aef9d7d authored by qa_quantgroup's avatar qa_quantgroup

update

parent 6eec33d1
#!/bin/bash #!/bin/bash
echo "cd $JENKINS_HOME/jobs/$JOB_BASE_NAME/builds/${BUILD_NUMBER}"
cd $JENKINS_HOME/jobs/$JOB_BASE_NAME/builds/${BUILD_NUMBER} cd $JENKINS_HOME/jobs/$JOB_BASE_NAME/builds/${BUILD_NUMBER}
grep "Got error: 104" log grep -B 1 "Got error: 104" log
if [ $? = 0 ];then if [ $? = 0 ];then
exit -1 exit -1
fi fi
grep "EXEC_SQL_FAIELD Error 1813" log grep -B 1 "EXEC_SQL_FAIELD Error 1813" log
if [ $? = 0 ];then if [ $? = 0 ];then
exit -1 exit -1
fi fi
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment