From 0507e8083386fca591491bc682d10d47ba9dae32 Mon Sep 17 00:00:00 2001 From: Stas Bezuhlyi <56916662+stasbezuhlyi@users.noreply.github.com> Date: Thu, 1 Apr 2021 15:16:45 +0300 Subject: [PATCH] Update Jenkinsfile --- Jenkinsfile | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index cb6d2e741..3747b5663 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,10 +1,5 @@ pipeline { - agent { - docker { - image 'maven:3-alpine' - args '-v /root/.m2:/root/.m2' - } - } + agent any stages { stage('Checkout SCM') { @@ -22,8 +17,7 @@ pipeline { } stage('Build') { steps { - sh 'chmod +x ./gradlew' - sh './gradlew build -x test' + echo 'Build..' } } stage('Test') { @@ -37,4 +31,4 @@ pipeline { } } } -} \ No newline at end of file +}