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 8c53b23847a43a3640ed89211758f1a8a5b16cdf Author: Shad Storhaug <[email protected]> AuthorDate: Fri Nov 20 22:46:58 2020 +0700 azure-pipelines.yml: Changed default of AwaitsFix to true during CI builds. --- azure-pipelines.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 4cad145..9c03826 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -148,7 +148,7 @@ stages: $nightly = if ($Env:IsNightly -eq 'true') { 'true' } else { 'false' } $weekly = if ($Env:IsWeekly -eq 'true') { 'true' } else { 'false' } $slow = if ($Env:RunSlowTests -ne 'false') { 'true' } else { 'false' } - $awaitsFix = if ($Env:RunAwaitsFixTests -eq 'true') { 'true' } else { 'false' } + $awaitsFix = if ($Env:RunAwaitsFixTests -ne 'false') { 'true' } else { 'false' } $codec = if ($Env:Codec -eq $null) { 'random' } else { $Env:Codec } $docValuesFormat = if ($Env:DocValuesFormat -eq $null) { 'random' } else { $Env:DocValuesFormat } $postingsFormat = if ($Env:PostingsFormat -eq $null) { 'random' } else { $Env:PostingsFormat }
