You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by dp...@apache.org on 2017/06/30 15:14:00 UTC

[12/15] logging-log4net git commit: Hard-wired nant installation for now

Hard-wired nant installation for now


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

Branch: refs/heads/feature/RollingFileAppender-NG
Commit: cafc88dfe0c71bd367f0ccc1af48243c3f12ec22
Parents: 5ab062c
Author: Dominik Psenner <dp...@apache.org>
Authored: Fri Jun 30 14:52:33 2017 +0200
Committer: Dominik Psenner <dp...@apache.org>
Committed: Fri Jun 30 14:52:33 2017 +0200

----------------------------------------------------------------------
 Jenkinsfile | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/logging-log4net/blob/cafc88df/Jenkinsfile
----------------------------------------------------------------------
diff --git a/Jenkinsfile b/Jenkinsfile
index 58cdbf6..50b5927 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -19,8 +19,8 @@
 
 node('Windows')
 {
-	def NANT_LATEST=tool name: 'NAnt (latest)', type: 'hudson.tasks.NAnt$NAntInstallation'
-	echo NANT_LATEST
+	// TODO: find a better way to determine nant latest
+	def NANT_LATEST="F:\\jenkins\\tools\\nant\\nant-0.92\\bin"
 	dir('build')
 	{
 		stage('Checkout')
@@ -30,10 +30,10 @@ node('Windows')
 
 		stage('Build')
 		{
-			/*withEnv(["Path+NANT=$NANT_LATEST\\bin"])
+			withEnv(["Path+NANT=$NANT_LATEST"])
 			{
                 		bat "NAnt.exe -version"
-                	}*/
+                	}
 		}
 	}
 }