-
Notifications
You must be signed in to change notification settings - Fork 169
任务类型
labulaka521 edited this page Apr 24, 2020
·
2 revisions
现在可以执行的任务类型为HTTP请求和运行代码任务Shell
、Python
、Python3
、Golang
、Nodejs
、WindowsBat批处理
运行代码任务是在执行节点生成对应的代码文件然后再使用对应代码类型的命令来运行这个文件,具体的命令如下
- Shell
命令默认为环境变量SHELL
的值如果没有就使用sh $codefile.sh
,不支持Windows - Python
使用Python 2.x版本,具体的命令为python $codefile.py
- Python3
使用Python 3.x版本,具体命令为python3 $codefile.py
- Golang
使用Golang且版本不小于1.11,具体的命令为go run $codefile.go
- Nodejs
使用Nodejs,无版本限制,具体的命令为node $codefile.js
- WindowsBat
使用Windows平台的bat批处理命令,执行的命令为cmd /C $codefile.bat
,只支持Windows
codefile
为代码绝对路径,默认路径使用各个平台的临时目录或临时文件生成
上述命令需要在环境变量
中可以寻找到,否则就会执行失败