Give Python script access to pipeline steps

Does anyone have a way to access Jenkins pipeline steps from an external script? We’re trying to centralize as much of our jobs as possible in Python scripts, but the problem is the inability to access steps from the script. For example, to archive artifacts or publish documentation, the script needs to communicate that information back to Groovy so the Groovy can call archiveArtifacts, etc.

One thing I badly miss in Python is the ability to create stages to organize which part of the job is running; now that it’s in Python the output is all under a single sh python block.

I’m fairly sure there’s no built-in way to do this, so I’m hoping for either a plugin or some clever Groovy scripting that makes it possible. I’ve tried to do it via either opening a FIFO or a socket from the Groovy script that the Python script can use to talk to it, but ran into a lot of complexity trying to make that work.

I do not think this is a realistic expectation - the Java/Groovy code runs on the Controller, Python would run on Agent/Node. My suggestion would be to turn this insideout - create your components and have Groovy Pipeline call them - if you want to reuse the same components without Groovy you would have to re-create the outer script that calls them but all the steps would be the same.

Generally you should not things needed for build vs things needed for orchestration - put your build inside whatever is the build tool of your choosing, then only run the orchestration parts you need Jenkins for (staging environment, handling output an reports, etc) in Jenkins, and where the build would be - call your build tool. This way you only get Jenkins specific code in Jenkins, and your devs can build things locally without worrying about Jenkins or any other CICD tool

HTH

Any of the alternative runtimes have been removed, I can find the blog post that go into detail, but they were really old, nobody was maintaining them, and making it hard to upgrade. So now its java only again.

I recommend just using pipeline, as @mlasevich hints at, its pretty simple to do basic flow there (steps, stages, etc).

If you want to write everything in python, you can see two “hacks”

  1. Have a bunch of jobs that do things, and call them as parameters. So job/uploadArtifact/buildWithParameters?fileContents=base64contents
  2. Have python write out a Jenkinsfile.python, then your basic jenkinsfile just calls load:./Jenkinsfile.python

But yea, I wouldn’t recommend either of them. Basic groovy shouldn’t be hard to learn, and your pipeline can just call your python scripts to do any real work.