From 3ce3705d3201cec6b018546d08eb973437e21c57 Mon Sep 17 00:00:00 2001 From: cristiano Date: Wed, 29 Apr 2026 23:06:45 +1000 Subject: [PATCH] adding Jenkinsfile --- Jenkinsfile | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 Jenkinsfile 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.' + } + } +}