Update Jenkinsfile
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Has been cancelled

This commit is contained in:
2025-07-31 20:11:21 +02:00
parent 4dae92019e
commit 2b59e5ba85

20
Jenkinsfile vendored
View File

@@ -1,14 +1,10 @@
pipeline { pipeline {
agent any agent any
stages { stages {
stage('Hello') { stage('Test') {
steps { steps {
echo "hello wordl" sh 'echo hi'
script { }
img = 'python:latest' }
docker.image("${img}").run('-d')
}
}
} }
} }
}