Repository: logging-log4net
Updated Branches:
  refs/heads/feature/cd-pipeline 66d05d5c3 -> 14675ee96


Jenkinsfile: moved build-netstandard stage to the front


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

Branch: refs/heads/feature/cd-pipeline
Commit: 14675ee9646cfa0f62a9c6c021ae0e6d955536e6
Parents: 66d05d5
Author: Dominik Psenner <dpsen...@apache.org>
Authored: Sun Jul 9 12:01:38 2017 +0200
Committer: Dominik Psenner <dpsen...@apache.org>
Committed: Sun Jul 9 12:01:38 2017 +0200

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


http://git-wip-us.apache.org/repos/asf/logging-log4net/blob/14675ee9/Jenkinsfile
----------------------------------------------------------------------
diff --git a/Jenkinsfile b/Jenkinsfile
index 62f6b2c..cbb3a9d 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -36,6 +36,26 @@ pipeline {
                }
 
                // builds
+               stage('build netstandard') {
+                       agent {
+                               dockerfile {
+                                       dir 
'buildtools/docker/builder-netstandard'
+                                       reuseNode true
+                               }
+                       }
+                       steps {
+                               sh 'export HOME=`pwd`'
+                               sh 'echo home=$HOME'
+                               sh 'echo user=$USER'
+                               sh 'cat /etc/passwd'
+
+                               checkout scm
+                               
+                               // compile 
+                               sh 'nant compile-netstandard'
+                               stash includes: 'bin/**/*.*', name: 
'netstandard-assemblies'
+                       }
+               }
                stage('build net-3.5') {
                        agent { label 'Windows' }
                        environment {
@@ -157,26 +177,6 @@ pipeline {
                                stash includes: 'tests/bin/**/*.nunit.xml', 
name: 'mono-4.0-testresults'
                        }
                }
-               stage('build netstandard') {
-                       agent {
-                               dockerfile {
-                                       dir 
'buildtools/docker/builder-netstandard'
-                                       reuseNode true
-                               }
-                       }
-                       steps {
-                               sh 'export HOME=`pwd`'
-                               sh 'echo home=$HOME'
-                               sh 'echo user=$USER'
-                               sh 'cat /etc/passwd'
-
-                               checkout scm
-                               
-                               // compile 
-                               sh 'nant compile-netstandard'
-                               stash includes: 'bin/**/*.*', name: 
'netstandard-assemblies'
-                       }
-               }
                stage('build site') {
                        agent { label 'Windows' }
                        tools {

Reply via email to