commit 5bede374ed30c431ed55bff32fa602ac0640e6ba parent a7f3f14e2dd22600bef525cefc342e6c1b1321a9 Author: matt <matt> Date: Sat, 8 Aug 2020 23:12:46 +0100 Removed Test stage Diffstat:
| M | Jenkinsfile | | | 30 | +++++++++++++----------------- |
1 file changed, 13 insertions(+), 17 deletions(-)
diff --git a/Jenkinsfile b/Jenkinsfile @@ -1,21 +1,17 @@ pipeline { - agent any + agent any + stages { + stage('Build') { + steps { + echo 'Building..' + } + } - stages { - stage('Build') { - steps { - echo 'Building..' - } - } - stage('Test') { - steps { - echo 'Testing..' - } - } - stage('Deploy') { - steps { - echo 'Deploying....' - } - } + stage('Deploy') { + steps { + echo 'Deploying....' + } } + + } } \ No newline at end of file