Jenkinsfile: attempt to test net-4.0 assemblies
Project: http://git-wip-us.apache.org/repos/asf/logging-log4net/repo Commit: http://git-wip-us.apache.org/repos/asf/logging-log4net/commit/2b863aa9 Tree: http://git-wip-us.apache.org/repos/asf/logging-log4net/tree/2b863aa9 Diff: http://git-wip-us.apache.org/repos/asf/logging-log4net/diff/2b863aa9 Branch: refs/heads/feature/RollingFileAppender-NG Commit: 2b863aa9a082ea2049332cbf17c4ebf285bcfdd8 Parents: a5d631d Author: Dominik Psenner <[email protected]> Authored: Tue Jul 4 09:40:34 2017 +0200 Committer: Dominik Psenner <[email protected]> Committed: Tue Jul 4 09:40:34 2017 +0200 ---------------------------------------------------------------------- Jenkinsfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/logging-log4net/blob/2b863aa9/Jenkinsfile ---------------------------------------------------------------------- diff --git a/Jenkinsfile b/Jenkinsfile index 800496d..2501bc0 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -170,13 +170,14 @@ pipeline { } } // TODO: testing needs to be refactored - stage('test on Windows') { + stage('test net-4.0') { agent { label 'Windows' } environment { NANT_BIN = 'F:\\jenkins\\tools\\nant\\nant-0.92\\bin\\NAnt.exe' } steps { checkout scm + unstash 'net-4.0-assemblies' bat "${NANT_BIN} -buildfile:tests\\nant.build" // TODO: stash test results }
