简体   繁体   中英

Run a Python script in Jenkins Pipeline using Windows

I didn't found a solution for Windows: This is only working for Linux:

How can I call a py script in a Jenkins File (Pipeline)?

pipeline {
    agent { docker { image 'python:3.8.1' } }
    stages {
        stage('build') {
            steps {
                sh 'python --version'
            }
        }
    }
}

As you know, the sh command let you invoke the Linux shell.

To execute your Python script on Windows, you should have the following step:

steps {
   bat 'python --version'
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM