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 2022/11/21 10:08:29 UTC

[lucenenet] branch master updated (73aa0fbda -> 334cc0d5d)

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 73aa0fbda README.md, lucene-cli/docs/index.md: Updated prerequisites for lucene-cli and for building, which now requires Visual Studio 2022 and .NET 7 SDK.
     add f2361b89d Added net7.0 tests and retargeted lucene-cli to net6.0 and net7.0.
     add fe17284a9 Fixed a couple of minor issues for net7.0 that were causing test failures. These were basically bug fixes that weren't accounted for by our tests.
     add 3f81ca996 azure-pipelines.yml: Added tests for net7.0
     add bcec9b805 .github/workflows/Generate-TestWorkflows.ps1: Replaced net6.0 tests with net7.0 tests
     add 86c51b054 runbuild.ps1: Updated .NET SDK version
     add 9ae655f26 Lucene.Net.Tests.Store.TestRAMDirectory: Fixed teardown to retry file deletion if they are locked by another process.
     add fe80edd76 .build/runbuild.ps1: Print the SYSTEM_DEFAULTWORKINGDIRECTORY environment variable for debugging purposes
     add 706072ff9 README.md, lucene-cli/docs/index.md: Updated prerequisites for lucene-cli and for building, which now requires Visual Studio 2022 and .NET 7 SDK.
     new 48e973418 .github/workflows/sonar.yml: Install .NET 7 SDK
     new 334cc0d5d Merge branch 'feature/net7.0'

The 2 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:
 .github/workflows/sonar.yml | 9 +++++++++
 1 file changed, 9 insertions(+)


[lucenenet] 01/02: .github/workflows/sonar.yml: Install .NET 7 SDK

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 48e9734188561a931954cb328fcd75c312f53d12
Author: Shad Storhaug <sh...@shadstorhaug.com>
AuthorDate: Mon Nov 21 17:04:53 2022 +0700

    .github/workflows/sonar.yml: Install .NET 7 SDK
---
 .github/workflows/sonar.yml | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/.github/workflows/sonar.yml b/.github/workflows/sonar.yml
index 711134db7..bb6a29a99 100644
--- a/.github/workflows/sonar.yml
+++ b/.github/workflows/sonar.yml
@@ -29,6 +29,15 @@ jobs:
     name: Build and analyze
     runs-on: windows-latest
     steps:
+      - name: Disable .NET SDK Telemetry and Logo
+        run: |
+          echo "DOTNET_NOLOGO=1" | Out-File -FilePath  $env:GITHUB_ENV -Encoding utf8 -Append
+          echo "DOTNET_CLI_TELEMETRY_OPTOUT=1" | Out-File -FilePath  $env:GITHUB_ENV -Encoding utf8 -Append
+        shell: pwsh
+      - name: Setup .NET 7 SDK
+        uses: actions/setup-dotnet@v1
+        with:
+          dotnet-version: '7.0.x'
       - name: Set up JDK 11
         uses: actions/setup-java@v1
         with:


[lucenenet] 02/02: Merge branch 'feature/net7.0'

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 334cc0d5d472a20284e7f0b1f4b8f9e8620b9ec8
Merge: 73aa0fbda 48e973418
Author: Shad Storhaug <sh...@shadstorhaug.com>
AuthorDate: Mon Nov 21 17:06:41 2022 +0700

    Merge branch 'feature/net7.0'

 .github/workflows/sonar.yml | 9 +++++++++
 1 file changed, 9 insertions(+)