-
今天 python 自动化项目代码写完后,想在 Jenkins 上构建时报错:
Started by user deng Running as SYSTEM Building in workspace D:Program Files (x86)Jenkinsworkspaceqcd_api_auto [qcd_api_auto] $ cmd /c call C:WindowsTEMPjenkins7509449236071696039.bat D:Program Files (x86)Jenkinsworkspaceqcd_api_auto>python run_test.py 'python' 不是内部或外部命令,也不是可运行的程序 或批处理文件。 D:Program Files (x86)Jenkinsworkspaceqcd_api_auto>exit 9009 Build step 'Execute Windows batch command' marked build as failure Finished: FAILURE
-
原因:
-
1、jenkins 执行windows命令,若退出代码不为0 ,则 jenkins会将构建标记为失败,所以需要加上 exit 0 表示执行完成退出。
-
2、Jenkins 缺少环境配置,添加环境变量就行了。
-
-
解决方法:
- 再重新构建项目就不会报错了。