Files
linux/Jenkinsfile.bckp
T
cristiano a495c52fc5
HomeLab/Gitea HomeLab/pipeline/head There was a failure building this commit
testing jenkinsfile
2026-05-02 14:03:34 +10:00

28 lines
570 B
Plaintext

pipeline {
agent any
stages {
stage('Checkout') {
steps {
checkout scm
}
}
stage('Build') {
steps {
// Add build commands here, e.g., sh 'make build'
sh 'echo "Building project..."'
}
}
stage('Test') {
steps {
// Add test commands here
sh 'echo "Running tests..."'
}
}
}
post {
failure {
echo 'The build failed.'
}
}
}