From 1988ed4362537722c3b71a50b6f71c3f27101268 Mon Sep 17 00:00:00 2001 From: DaWilliam Date: Sat, 3 Mar 2018 23:56:37 -0500 Subject: [PATCH] replaced to just echo's --- Jenkinsfile | 22 ++++++++++++++-------- 1 file changed, 14 insertions(+), 8 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index ccd712e..b982250 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,14 +1,20 @@ pipeline { - agent none + agent any + stages { - stage('Build') { - agent { - docker { - //image 'python:2-alpine' - } - } + stage('Build') { steps { - //sh 'python -m py_compile sources/add2vals.py sources/calc.py' + echo 'Building..' + } + } + stage('Test') { + steps { + echo 'Testing..' + } + } + stage('Deploy') { + steps { + echo 'Deploying....' } } }