You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucenenet.apache.org by ni...@apache.org on 2021/02/26 00:22:16 UTC

[lucenenet] branch master updated (6ff2ab2 -> 0dbda3e)

This is an automated email from the ASF dual-hosted git repository.

nightowl888 pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/lucenenet.git.


    from 6ff2ab2  Lucene.Net.Tests.Analysis.Common.Analysis.Hunspell: Changed TestAllDictionaries and TestAllDictionaries2 data path to the root of the repo to match the .gitignore file
     new 6e3b2d4  run-tests-on-os.yml: Write $blameHangTimeout to console for debugging
     new 87b29a1  run-tests-on-os.yml: Fixed typo on $isNightly variable reference
     new 0dbda3e  run-tests-on-os.yml: Adjusted blame-hang timeouts for both regular (15 min) and nightly (40 min) runs. Timeouts are per test.

The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 build/azure-templates/run-tests-on-os.yml | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)


[lucenenet] 03/03: run-tests-on-os.yml: Adjusted blame-hang timeouts for both regular (15 min) and nightly (40 min) runs. Timeouts are per test.

Posted by ni...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

nightowl888 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/lucenenet.git

commit 0dbda3e18c7b69bd6beecd8e47d288c00d5d5440
Author: Shad Storhaug <sh...@shadstorhaug.com>
AuthorDate: Fri Feb 26 05:35:53 2021 +0700

    run-tests-on-os.yml: Adjusted blame-hang timeouts for both regular (15 min) and nightly (40 min) runs. Timeouts are per test.
---
 build/azure-templates/run-tests-on-os.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/build/azure-templates/run-tests-on-os.yml b/build/azure-templates/run-tests-on-os.yml
index 1b60ca8..8268565 100644
--- a/build/azure-templates/run-tests-on-os.yml
+++ b/build/azure-templates/run-tests-on-os.yml
@@ -139,9 +139,9 @@ steps:
             Copy-Item -Path "$sourceDirectory/*" -Destination "$tempTestDirectory" -Recurse -Force
 
             if ($isNightly -ne 'true' -and $isWeekly -ne 'true') {
-                $blameHangTimeout = "--blame-hang-timeout 10minutes"
+                $blameHangTimeout = "--blame-hang-timeout 15minutes"
             } else {
-                $blameHangTimeout = "--blame-hang-timeout 50minutes"
+                $blameHangTimeout = "--blame-hang-timeout 40minutes"
             }
 
             Write-Host "Running with $blameHangTimeout"


[lucenenet] 01/03: run-tests-on-os.yml: Write $blameHangTimeout to console for debugging

Posted by ni...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

nightowl888 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/lucenenet.git

commit 6e3b2d452db95f37ffb407048404a2a4994f1ac8
Author: Shad Storhaug <sh...@shadstorhaug.com>
AuthorDate: Fri Feb 26 00:54:35 2021 +0700

    run-tests-on-os.yml: Write $blameHangTimeout to console for debugging
---
 build/azure-templates/run-tests-on-os.yml | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/build/azure-templates/run-tests-on-os.yml b/build/azure-templates/run-tests-on-os.yml
index ce0101f..6767f84 100644
--- a/build/azure-templates/run-tests-on-os.yml
+++ b/build/azure-templates/run-tests-on-os.yml
@@ -1,4 +1,4 @@
-# Licensed to the Apache Software Foundation (ASF) under one
+# Licensed to the Apache Software Foundation (ASF) under one
 # or more contributor license agreements.  See the NOTICE file
 # distributed with this work for additional information
 # regarding copyright ownership.  The ASF licenses this file
@@ -144,6 +144,8 @@ steps:
                 $blameHangTimeout = "--blame-hang-timeout 50minutes"
             }
 
+            Write-Host "Running with $blameHangTimeout"
+
             $testExpression = "dotnet test ""$testTarget"" --framework ""$framework"" --blame --no-build --no-restore" + `
                 " --logger:""console;verbosity=normal"" --logger:""trx;LogFileName=$testResultsFileName""" + `
                 " --results-directory:""$testResultDirectory""" + `


[lucenenet] 02/03: run-tests-on-os.yml: Fixed typo on $isNightly variable reference

Posted by ni...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

nightowl888 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/lucenenet.git

commit 87b29a1a2a824b481195ab3105c9d38d94e049ba
Author: Shad Storhaug <sh...@shadstorhaug.com>
AuthorDate: Fri Feb 26 04:48:39 2021 +0700

    run-tests-on-os.yml: Fixed typo on $isNightly variable reference
---
 build/azure-templates/run-tests-on-os.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/build/azure-templates/run-tests-on-os.yml b/build/azure-templates/run-tests-on-os.yml
index 6767f84..1b60ca8 100644
--- a/build/azure-templates/run-tests-on-os.yml
+++ b/build/azure-templates/run-tests-on-os.yml
@@ -138,7 +138,7 @@ steps:
 
             Copy-Item -Path "$sourceDirectory/*" -Destination "$tempTestDirectory" -Recurse -Force
 
-            if ($isNighly -ne 'true' -and $isWeekly -ne 'true') {
+            if ($isNightly -ne 'true' -and $isWeekly -ne 'true') {
                 $blameHangTimeout = "--blame-hang-timeout 10minutes"
             } else {
                 $blameHangTimeout = "--blame-hang-timeout 50minutes"