You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by dp...@apache.org on 2017/10/31 19:35:34 UTC

[1/2] logging-log4net git commit: Jenkinsfile: expect a mstests.xml to be generated by the target runtests-netstandard-1.3

Repository: logging-log4net
Updated Branches:
  refs/heads/feature/cd-pipeline fec14bfd7 -> c731855a4


Jenkinsfile: expect a mstests.xml to be generated by the target runtests-netstandard-1.3


Project: http://git-wip-us.apache.org/repos/asf/logging-log4net/repo
Commit: http://git-wip-us.apache.org/repos/asf/logging-log4net/commit/26455f00
Tree: http://git-wip-us.apache.org/repos/asf/logging-log4net/tree/26455f00
Diff: http://git-wip-us.apache.org/repos/asf/logging-log4net/diff/26455f00

Branch: refs/heads/feature/cd-pipeline
Commit: 26455f005411ca9cf6d3dad7ede695abed73eeae
Parents: fec14bf
Author: Dominik Psenner <dp...@apache.org>
Authored: Wed Aug 23 21:23:00 2017 +0200
Committer: Dominik Psenner <dp...@apache.org>
Committed: Tue Oct 31 20:30:16 2017 +0100

----------------------------------------------------------------------
 Jenkinsfile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/logging-log4net/blob/26455f00/Jenkinsfile
----------------------------------------------------------------------
diff --git a/Jenkinsfile b/Jenkinsfile
index d9d877e..4e091a2 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -64,7 +64,7 @@ pipeline {
 
 						// test
 						sh "nant -buildfile:tests/nant.build runtests-netstandard-1.3"
-						stash includes: 'tests/bin/**/*.nunit.xml', name: 'netstandard-1.3-testresults'
+						stash includes: 'tests/bin/**/*.mstests.xml', name: 'netstandard-1.3-testresults'
 					}
 				}
 			}


[2/2] logging-log4net git commit: Make dotnet test output build results to an xml file

Posted by dp...@apache.org.
Make dotnet test output build results to an xml file


Project: http://git-wip-us.apache.org/repos/asf/logging-log4net/repo
Commit: http://git-wip-us.apache.org/repos/asf/logging-log4net/commit/c731855a
Tree: http://git-wip-us.apache.org/repos/asf/logging-log4net/tree/c731855a
Diff: http://git-wip-us.apache.org/repos/asf/logging-log4net/diff/c731855a

Branch: refs/heads/feature/cd-pipeline
Commit: c731855a49cecd37150d53794bcdbd1ce2b684bc
Parents: 26455f0
Author: Dominik Psenner <dp...@apache.org>
Authored: Tue Oct 31 20:35:26 2017 +0100
Committer: Dominik Psenner <dp...@apache.org>
Committed: Tue Oct 31 20:35:26 2017 +0100

----------------------------------------------------------------------
 tests/nant.build | 2 ++
 1 file changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/logging-log4net/blob/c731855a/tests/nant.build
----------------------------------------------------------------------
diff --git a/tests/nant.build b/tests/nant.build
index 815ead1..c79ffaa 100644
--- a/tests/nant.build
+++ b/tests/nant.build
@@ -868,6 +868,8 @@ limitations under the License.
     <target name="runtests-netstandard-1.3" description="Runs log4net tests on .NET Standard 1.3">
         <exec program="dotnet" workingdir="${log4net.basedir}/netstandard/log4net.tests">
             <arg value="test"/>
+			<arg value="-xml"/>
+			<arg value="${current.bin.dir}/log4net.Tests.dll-results.mstest.xml"/>
             <arg value="--verbosity"/>
 		    <arg value="detailed"/>
         </exec>