Repository: logging-log4net Updated Branches: refs/heads/feature/cd-pipeline 3cd1743c5 -> 3533a9b22
Jenkinsfile: run mono-2.0 tests and record test results Project: http://git-wip-us.apache.org/repos/asf/logging-log4net/repo Commit: http://git-wip-us.apache.org/repos/asf/logging-log4net/commit/3533a9b2 Tree: http://git-wip-us.apache.org/repos/asf/logging-log4net/tree/3533a9b2 Diff: http://git-wip-us.apache.org/repos/asf/logging-log4net/diff/3533a9b2 Branch: refs/heads/feature/cd-pipeline Commit: 3533a9b221c9d0009c4acbb91445903918325a82 Parents: 3cd1743 Author: Dominik Psenner <[email protected]> Authored: Wed Jul 5 17:13:25 2017 +0200 Committer: Dominik Psenner <[email protected]> Committed: Wed Jul 5 17:13:25 2017 +0200 ---------------------------------------------------------------------- Jenkinsfile | 3 +++ 1 file changed, 3 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/logging-log4net/blob/3533a9b2/Jenkinsfile ---------------------------------------------------------------------- diff --git a/Jenkinsfile b/Jenkinsfile index 7b91b3d..f8d5ff3 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -118,6 +118,8 @@ pipeline { checkout scm sh "nant -t:mono-2.0 -buildfile:log4net.build compile-mono-2.0" stash includes: 'bin/**/*.*', name: 'mono-2.0-assemblies' + sh 'nant -t:mono-2.0 -buildfile:tests/nant.build runtests-mono-2.0" + stash includes: 'tests/bin/**/*.nunit.xml', name: 'mono-2.0-testresults' } } stage('build mono-3.5') { @@ -205,6 +207,7 @@ pipeline { unstash 'net-4.0-testresults' unstash 'net-4.0-cp-testresults' unstash 'net-4.5-testresults' + unstash 'mono-2.0-testresults' // unstash site unstash 'site'
