Removed node statement

Project: http://git-wip-us.apache.org/repos/asf/logging-log4net/repo
Commit: http://git-wip-us.apache.org/repos/asf/logging-log4net/commit/f6232d6a
Tree: http://git-wip-us.apache.org/repos/asf/logging-log4net/tree/f6232d6a
Diff: http://git-wip-us.apache.org/repos/asf/logging-log4net/diff/f6232d6a

Branch: refs/heads/master
Commit: f6232d6a64dc4d233fb53cc09096111536204886
Parents: 9432f62
Author: Dominik Psenner <[email protected]>
Authored: Sat Jul 1 09:55:30 2017 +0200
Committer: Dominik Psenner <[email protected]>
Committed: Sat Jul 1 09:55:30 2017 +0200

----------------------------------------------------------------------
 Jenkinsfile | 30 ++++++++++--------------------
 1 file changed, 10 insertions(+), 20 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/logging-log4net/blob/f6232d6a/Jenkinsfile
----------------------------------------------------------------------
diff --git a/Jenkinsfile b/Jenkinsfile
index 7888012..767a98a 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -28,41 +28,31 @@ pipeline {
        }
        stages {
                stage('Checkout') {
-                       node {
-                               steps {
-                                       checkout scm
-                               }
+                       steps {
+                               checkout scm
                        }
                }
                stage('Build') {
-                       node {
-                               steps {
-                                       bat "${NAnt} -buildfile:log4net.build"
-                               }
+                       steps {
+                               bat "${NAnt} -buildfile:log4net.build"
                        }
                }
                stage('Test on Windows') {
-                       node {
-                               steps {
-                                       bat "${NAnt} 
-buildfile:tests\\nant.build"
-                               }
+                       steps {
+                               bat "${NAnt} -buildfile:tests\\nant.build"
                        }
                }
                stage('Build-Site') {
-                       node {
-                               steps {
-                                       bat "${NAnt} -buildfile:log4net.build 
generate-site"
-                               }
+                       steps {
+                               bat "${NAnt} -buildfile:log4net.build 
generate-site"
                        }
                }
                stage('Deploy-Site') {
                        when {
                                branch 'master'
                        }
-                       node {
-                               steps {
-                                       echo 'This is a placeholder for the 
deployment of the site'
-                               }
+                       steps {
+                               echo 'This is a placeholder for the deployment 
of the site'
                        }
                }
        }

Reply via email to