Files
tatort/Jenkinsfile
jared aeccb684b4
All checks were successful
InnoHub Processor/tatort/pipeline/head This commit looks good
Jenkinsfile aktualisiert
rename file
2025-06-25 09:11:37 +02:00

22 lines
358 B
Groovy

pipeline {
agent any
stages {
stage('Build') {
steps {
echo 'Building..'
}
}
stage('Test') {
steps {
echo 'Testing..'
}
}
stage('Deploy') {
steps {
echo 'Deploying....'
}
}
}
}