Jenkinsfile: attempt to fix referenced framework
Project: http://git-wip-us.apache.org/repos/asf/logging-log4net/repo Commit: http://git-wip-us.apache.org/repos/asf/logging-log4net/commit/7c042084 Tree: http://git-wip-us.apache.org/repos/asf/logging-log4net/tree/7c042084 Diff: http://git-wip-us.apache.org/repos/asf/logging-log4net/diff/7c042084 Branch: refs/heads/feature/RollingFileAppender-NG Commit: 7c042084119385c2ae72b98d1ad10d7669a7ec5e Parents: bd6c37f Author: Dominik Psenner <[email protected]> Authored: Tue Jul 4 11:11:50 2017 +0200 Committer: Dominik Psenner <[email protected]> Committed: Tue Jul 4 11:11:50 2017 +0200 ---------------------------------------------------------------------- Jenkinsfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/logging-log4net/blob/7c042084/Jenkinsfile ---------------------------------------------------------------------- diff --git a/Jenkinsfile b/Jenkinsfile index f640ff6..86e9509 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -58,9 +58,9 @@ pipeline { steps { deleteDir() checkout scm - bat "${NANT_BIN} -t:net-3.5 -buildfile:log4net.build compile-net-3.5-cp" + bat "${NANT_BIN} -t:net-3.5-cp -buildfile:log4net.build compile-net-3.5-cp" stash includes: 'bin/**/*.*', name: 'net-3.5-cp-assemblies' - bat "${NANT_BIN} -t:net-3.5 -buildfile:tests/nant.build runtests-net-3.5-cp" + bat "${NANT_BIN} -t:net-3.5-cp -buildfile:tests/nant.build runtests-net-3.5-cp" } } stage('build net-4.0') { @@ -84,9 +84,9 @@ pipeline { steps { deleteDir() checkout scm - bat "${NANT_BIN} -t:net-4.0 -buildfile:log4net.build compile-net-4.0-cp" + bat "${NANT_BIN} -t:net-4.0-cp -buildfile:log4net.build compile-net-4.0-cp" stash includes: 'bin/**/*.*', name: 'net-4.0-cp-assemblies' - bat "${NANT_BIN} -t:net-4.0 -buildfile:tests/nant.build runtests-net-4.0-cp" + bat "${NANT_BIN} -t:net-4.0-cp -buildfile:tests/nant.build runtests-net-4.0-cp" } } stage('build net-4.5') {
