Files
linux/Jenkinsfile
T
cristiano 3ce3705d32
HomeLab/Gitea HomeLab/pipeline/head This commit looks good
adding Jenkinsfile
2026-04-29 23:06:45 +10:00

28 lines
570 B
Groovy

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.'
}
}
}