From 03dbd76ee7bcd41d00b64efb0a35e3cf8848896f Mon Sep 17 00:00:00 2001 From: Camila Martinez Date: Thu, 26 Oct 2023 11:37:12 -0500 Subject: [PATCH] Create Jenkinsfile --- Jenkinsfile | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 Jenkinsfile diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000..07423fc --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,31 @@ +// pipeline must be top-level +pipeline { + + //where to execture. This is equals to node {groovy} + agent any + + //Where the work happens + stages { + + stage("Build"){ + steps { + echo "Building app" + } + } + + stage("Test"){ + steps { + echo "Testing app" + } + } + + stage("Deploy"){ + steps { + echo "Deploying app" + + } + } + + } + +}