Commit 34db60fe authored by Fernando Vazquez's avatar Fernando Vazquez

Adjusted Jenkinsfile

parent 556cc500
......@@ -4,15 +4,17 @@ pipeline {
stages {
stage('Git Checkout') {
steps{
echo "Checking out repository"
git branch: "main", url: "https://gitlab.mynisum.com/fvazquez/hello-world-spring-boot"
echo "Checkout complete"
}
echo "Checking out repository"
git branch: "main", url: "https://gitlab.mynisum.com/fvazquez/hello-world-spring-boot"
echo "Checkout complete"
}
}
stage('Test') {
echo "Tetsing project..."
sh './gradlew clean test --no-daemon' //run a gradle task
echo "Test complete"
stage('Test') {
steps {
echo "Tetsing project..."
sh './gradlew clean test --no-daemon' //run a gradle task
echo "Test complete"
}
}
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment