Repository: logging-log4net Updated Branches: refs/heads/feature/RollingFileAppender-NG 2bd214a79 -> e33ab6cfc
Jenkinsfile: attempt to build net-2.0 and net-3.5-cp Project: http://git-wip-us.apache.org/repos/asf/logging-log4net/repo Commit: http://git-wip-us.apache.org/repos/asf/logging-log4net/commit/e29092f8 Tree: http://git-wip-us.apache.org/repos/asf/logging-log4net/tree/e29092f8 Diff: http://git-wip-us.apache.org/repos/asf/logging-log4net/diff/e29092f8 Branch: refs/heads/feature/RollingFileAppender-NG Commit: e29092f8b95f13c10aab6e0c6154a51cb73f03ab Parents: 86d373a Author: Dominik Psenner <[email protected]> Authored: Mon Jul 3 21:45:23 2017 +0200 Committer: Dominik Psenner <[email protected]> Committed: Mon Jul 3 21:45:23 2017 +0200 ---------------------------------------------------------------------- Jenkinsfile | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/logging-log4net/blob/e29092f8/Jenkinsfile ---------------------------------------------------------------------- diff --git a/Jenkinsfile b/Jenkinsfile index bf3d06f..23aac0b 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -33,6 +33,17 @@ pipeline { checkout scm } } + stage('build net-2.0') { + agent { label 'Windows' } + environment { + NANT_BIN = 'F:\\jenkins\\tools\\nant\\nant-0.92\\bin\\NAnt.exe' + } + steps { + checkout scm + bat "${NANT_BIN} -t:net-2.0 -buildfile:log4net.build compile-net-2.0" + stash includes: 'bin/**/*.*', name: 'net-2.0-assemblies' + } + } stage('build net-3.5') { agent { label 'Windows' } environment { @@ -44,6 +55,17 @@ pipeline { stash includes: 'bin/**/*.*', name: 'net-3.5-assemblies' } } + stage('build net-3.5-cp') { + agent { label 'Windows' } + environment { + NANT_BIN = 'F:\\jenkins\\tools\\nant\\nant-0.92\\bin\\NAnt.exe' + } + steps { + checkout scm + bat "${NANT_BIN} -t:net-3.5 -buildfile:log4net.build compile-net-3.5-cp" + stash includes: 'bin/**/*.*', name: 'net-3.5-cp-assemblies' + } + } stage('build net-4.0') { agent { label 'Windows' } environment {
