Merging tst to main #2

Merged
cristiano merged 4 commits from tst into main 2026-05-02 17:04:12 +10:00
Showing only changes of commit 68dfe2886b - Show all commits
-27
View File
@@ -1,27 +0,0 @@
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.'
}
}
}