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 {
agent any
stages {
stage('Hello') {
steps {
echo "hello wordl"
script {
img = 'python:latest'
docker.image("${img}").run('-d')
}
}
agent any
stages {
stage('Test') {
steps {
sh 'echo hi'
}
}
}
}
}
}