diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000..20f49b2 --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,27 @@ +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.' + } + } +}