Repository: logging-log4net Updated Branches: refs/heads/develop c88fc2619 -> 0ccb1e987
Jenkinsfile: provide -t when building mono Project: http://git-wip-us.apache.org/repos/asf/logging-log4net/repo Commit: http://git-wip-us.apache.org/repos/asf/logging-log4net/commit/4c2f5f39 Tree: http://git-wip-us.apache.org/repos/asf/logging-log4net/tree/4c2f5f39 Diff: http://git-wip-us.apache.org/repos/asf/logging-log4net/diff/4c2f5f39 Branch: refs/heads/develop Commit: 4c2f5f39d94004617cb92503f86eb4ecc4025e81 Parents: c88fc26 Author: Dominik Psenner <[email protected]> Authored: Mon Jul 3 13:36:57 2017 +0200 Committer: Dominik Psenner <[email protected]> Committed: Mon Jul 3 13:36:57 2017 +0200 ---------------------------------------------------------------------- Jenkinsfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/logging-log4net/blob/4c2f5f39/Jenkinsfile ---------------------------------------------------------------------- diff --git a/Jenkinsfile b/Jenkinsfile index d4e0a7f..031af40 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -59,7 +59,7 @@ pipeline { } } steps { - sh "nant -buildfile:log4net.build compile-mono-2.0" + sh "nant -t:mono-2.0 -buildfile:log4net.build compile-mono-2.0" archive 'bin/**/*.*' } } @@ -71,7 +71,7 @@ pipeline { } } steps { - sh "nant -buildfile:log4net.build compile-mono-3.5" + sh "nant -t:mono-3.5 -buildfile:log4net.build compile-mono-3.5" archive 'bin/**/*.*' } } @@ -83,7 +83,7 @@ pipeline { } } steps { - sh "nant -buildfile:log4net.build compile-mono-4.0" + sh "nant -t:mono-4.0 -buildfile:log4net.build compile-mono-4.0" archive 'bin/**/*.*' } }
