Repository: logging-log4net Updated Branches: refs/heads/feature/cd-pipeline cea0450b4 -> 3ebbf9e06
Jenkinsfile: run tests also for the targets mono-3.5 and mono-4.0 Project: http://git-wip-us.apache.org/repos/asf/logging-log4net/repo Commit: http://git-wip-us.apache.org/repos/asf/logging-log4net/commit/3ebbf9e0 Tree: http://git-wip-us.apache.org/repos/asf/logging-log4net/tree/3ebbf9e0 Diff: http://git-wip-us.apache.org/repos/asf/logging-log4net/diff/3ebbf9e0 Branch: refs/heads/feature/cd-pipeline Commit: 3ebbf9e065a65bf0c170fbf0cb56698ec52a8183 Parents: cea0450 Author: Dominik Psenner <[email protected]> Authored: Wed Jul 5 18:01:22 2017 +0200 Committer: Dominik Psenner <[email protected]> Committed: Wed Jul 5 18:01:22 2017 +0200 ---------------------------------------------------------------------- Jenkinsfile | 6 ++++++ 1 file changed, 6 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/logging-log4net/blob/3ebbf9e0/Jenkinsfile ---------------------------------------------------------------------- diff --git a/Jenkinsfile b/Jenkinsfile index 5ba58fe..7dc4ce5 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -134,6 +134,8 @@ pipeline { checkout scm sh "nant -t:mono-3.5 -buildfile:log4net.build compile-mono-3.5" stash includes: 'bin/**/*.*', name: 'mono-3.5-assemblies' + sh "nant -t:mono-3.5 -buildfile:tests/nant.build runtests-mono-3.5" + stash includes: 'tests/bin/**/*.nunit.xml', name: 'mono-3.5-testresults' } } stage('build mono-4.0') { @@ -148,6 +150,8 @@ pipeline { checkout scm sh "nant -t:mono-4.0 -buildfile:log4net.build compile-mono-4.0" stash includes: 'bin/**/*.*', name: 'mono-4.0-assemblies' + sh "nant -t:mono-4.0 -buildfile:tests/nant.build runtests-mono-4.0" + stash includes: 'tests/bin/**/*.nunit.xml', name: 'mono-4.0-testresults' } } stage('build netstandard') { @@ -208,6 +212,8 @@ pipeline { unstash 'net-4.0-cp-testresults' unstash 'net-4.5-testresults' unstash 'mono-2.0-testresults' + unstash 'mono-3.5-testresults' + unstash 'mono-4.0-testresults' // unstash site unstash 'site'
