Repository: logging-log4net Updated Branches: refs/heads/develop 0ccb1e987 -> 3cd1743c5
Jenkinsfile: attempt to build net-3.5 Project: http://git-wip-us.apache.org/repos/asf/logging-log4net/repo Commit: http://git-wip-us.apache.org/repos/asf/logging-log4net/commit/86d373a2 Tree: http://git-wip-us.apache.org/repos/asf/logging-log4net/tree/86d373a2 Diff: http://git-wip-us.apache.org/repos/asf/logging-log4net/diff/86d373a2 Branch: refs/heads/develop Commit: 86d373a278a44d25a77ebda668aadbcbccc76b1f Parents: cb51c90 Author: Dominik Psenner <[email protected]> Authored: Mon Jul 3 21:22:30 2017 +0200 Committer: Dominik Psenner <[email protected]> Committed: Mon Jul 3 21:22:30 2017 +0200 ---------------------------------------------------------------------- Jenkinsfile | 11 +++++++++++ 1 file changed, 11 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/logging-log4net/blob/86d373a2/Jenkinsfile ---------------------------------------------------------------------- diff --git a/Jenkinsfile b/Jenkinsfile index 1d6354a..bf3d06f 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -33,6 +33,17 @@ pipeline { checkout scm } } + stage('build net-3.5') { + 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" + stash includes: 'bin/**/*.*', name: 'net-3.5-assemblies' + } + } stage('build net-4.0') { agent { label 'Windows' } environment {
