如何在jenkins中执行python脚本

2024-06-16 13:11:37 发布

您现在位置:Python中文网/ 问答频道 /正文

我正在尝试构建基本的hello world应用程序:

pipeline {
   agent any

   stages {
      stage('Hello') {
         steps {
            echo 'Hello World'
            python E:/airflowtmp/hello.py

         }
      }
   }
}

当我执行它时,它会给出以下错误:

Running in Durability level: MAX_SURVIVABILITY
org.codehaus.groovy.control.MultipleCompilationErrorsException: startup failed:
WorkflowScript: 8: Expected a step @ line 8, column 13.
               python E:/airflowtmp/hello.py
               ^

1 error

    at org.codehaus.groovy.control.ErrorCollector.failIfErrors(ErrorCollector.java:310)
    at org.codehaus.groovy.control.CompilationUnit.applyToPrimaryClassNodes(CompilationUnit.java:1085)
    at org.codehaus.groovy.control.CompilationUnit.doPhaseOperation(CompilationUnit.java:603)
    at org.codehaus.groovy.control.CompilationUnit.processPhaseOperations(CompilationUnit.java:581)
    at org.codehaus.groovy.control.CompilationUnit.compile(CompilationUnit.java:558)
    at groovy.lang.GroovyClassLoader.doParseClass(GroovyClassLoader.java:298)
    at groovy.lang.GroovyClassLoader.parseClass(GroovyClassLoader.java:268)
    at groovy.lang.GroovyShell.parseClass(GroovyShell.java:688)
    at groovy.lang.GroovyShell.parse(GroovyShell.java:700)
    at org.jenkinsci.plugins.workflow.cps.CpsGroovyShell.doParse(CpsGroovyShell.java:142)
    at org.jenkinsci.plugins.workflow.cps.CpsGroovyShell.reparse(CpsGroovyShell.java:127)
    at org.jenkinsci.plugins.workflow.cps.CpsFlowExecution.parseScript(CpsFlowExecution.java:561)
    at org.jenkinsci.plugins.workflow.cps.CpsFlowExecution.start(CpsFlowExecution.java:522)
    at org.jenkinsci.plugins.workflow.job.WorkflowRun.run(WorkflowRun.java:337)
    at hudson.model.ResourceController.execute(ResourceController.java:97)
    at hudson.model.Executor.run(Executor.java:428)
Finished: FAILURE

如何使用Jenkins运行基本python应用程序?我通过dashboard创建了一个管道,并将python.py粘贴到模板中。它成功地打印了helloworld,但当我添加python语句时,它会生成错误


Tags: orglangpluginsjavaworkflowatcontrolgroovy
1条回答
网友
1楼 · 发布于 2024-06-16 13:11:37

您应该在sh指令中包装python执行,使其工作

pipeline {
   agent any
   stages {
      stage('Hello') {
         steps {
            echo "Hello World"
            sh "python E:/airflowtmp/hello.py"
         }
      }
   }
}

相关问题 更多 >