From e5cebcee083d3127251be8b9a39c86bdd4572697 Mon Sep 17 00:00:00 2001 From: Diego de la Iglesia Regueiro Date: Tue, 21 May 2024 13:36:33 +0200 Subject: [PATCH] Add JenkinsFile --- JenkinsFile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 JenkinsFile diff --git a/JenkinsFile b/JenkinsFile new file mode 100644 index 0000000..ec9c005 --- /dev/null +++ b/JenkinsFile @@ -0,0 +1,11 @@ +pipeline { + agent any { + stages { + stage('Show Branch Name and Project Name') { + steps { + echo "The job name its ${JOB_NAME} at project dyb-tech.com - Jenkins" + } + } + } + } +} \ No newline at end of file