From e6a18c5f783d1a3cd5e2c36aee081593dda767cd Mon Sep 17 00:00:00 2001 From: Shad Storhaug Date: Tue, 30 Apr 2024 21:49:33 +0700 Subject: [PATCH] Deleted backup files that were accidentally committed --- ...ne - Backup-Net-Tests-Analysis-OpenNLP.yml | 129 ------------------ ...- Backup.Net.Tests.Analysis.OpenNLP.csproj | 58 -------- 2 files changed, 187 deletions(-) delete mode 100644 .github/workflows/Lucene - Backup-Net-Tests-Analysis-OpenNLP.yml delete mode 100644 src/Lucene.Net.Tests.Analysis.OpenNLP/Lucene - Backup.Net.Tests.Analysis.OpenNLP.csproj diff --git a/.github/workflows/Lucene - Backup-Net-Tests-Analysis-OpenNLP.yml b/.github/workflows/Lucene - Backup-Net-Tests-Analysis-OpenNLP.yml deleted file mode 100644 index e414578071..0000000000 --- a/.github/workflows/Lucene - Backup-Net-Tests-Analysis-OpenNLP.yml +++ /dev/null @@ -1,129 +0,0 @@ -#################################################################################### -# DO NOT EDIT: This file was automatically generated by Generate-TestWorkflows.ps1 -#################################################################################### -# 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 -# to you under the Apache License, Version 2.0 (the -# "License"); you may not use this file except in compliance -# with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, -# software distributed under the License is distributed on an -# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -# KIND, either express or implied. See the License for the -# specific language governing permissions and limitations -# under the License. - -name: 'Lucene - Backup.Net.Tests.Analysis.OpenNLP' - -on: - workflow_dispatch: - pull_request: - paths: - - 'src/Lucene.Net.Tests.Analysis.OpenNLP/**/*' - - '.build/dependencies.props' - - '.build/TestReferences.Common.*' - - 'TestTargetFrameworks.*' - - '*.sln' - - 'src/Lucene.Net.Tests.Analysis.OpenNLP/Directory.Build.*' - - 'src/Directory.Build.*' - - 'Directory.Build.*' - - 'src/Lucene.Net.Tests.Analysis.OpenNLP/**/*.dict' - - 'src/Lucene.Net.Tests.Analysis.OpenNLP/**/*.bin' - - # Dependencies - - 'src/Lucene.Net/**/*' - - 'src/Lucene.Net.Analysis.Common/**/*' - - 'src/Lucene.Net.Memory/**/*' - - 'src/Lucene.Net.Queries/**/*' - - 'src/Lucene.Net.Highlighter/**/*' - - 'src/dotnet/Lucene.Net.ICU/**/*' - - 'src/Lucene.Net.Analysis.OpenNLP/**/*' - - 'src/Lucene.Net.Codecs/**/*' - - 'src/Lucene.Net.TestFramework/**/*' - - - '!**/*.md' - -jobs: - - Test: - runs-on: ${{ matrix.os }} - strategy: - fail-fast: false - matrix: - os: [windows-latest, ubuntu-latest] - framework: [net48] - platform: [x64] - configuration: [Release] - exclude: - - os: ubuntu-latest - framework: net48 - - os: ubuntu-latest - framework: net472 - - os: macos-latest - framework: net48 - - os: macos-latest - framework: net472 - env: - project_path: './src/Lucene.Net.Tests.Analysis.OpenNLP/Lucene - Backup.Net.Tests.Analysis.OpenNLP.csproj' - run_slow_tests: 'false' - trx_file_name: 'TestResults.trx' - md_file_name: 'TestResults.md' # Report file name for LiquidTestReports.Markdown - - steps: - - name: Checkout Source Code - uses: actions/checkout@v3 - - - 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 5 SDK - uses: actions/setup-dotnet@v3 - with: - dotnet-version: '5.0.x' - if: ${{ startswith(matrix.framework, 'net5.') }} - - - name: Setup .NET 6 SDK - uses: actions/setup-dotnet@v3 - with: - dotnet-version: '6.0.x' - if: ${{ startswith(matrix.framework, 'net6.') }} - - - name: Setup .NET 8 SDK - uses: actions/setup-dotnet@v3 - with: - dotnet-version: '8.0.x' - - - name: Setup Environment Variables - run: | - $project_name = [System.IO.Path]::GetFileNameWithoutExtension($env:project_path) - $test_results_artifact_name = "testresults_${{matrix.os}}_${{matrix.framework}}_${{matrix.platform}}_${{matrix.configuration}}" - $working_directory = "$env:GITHUB_WORKSPACE" - Write-Host "Project Name: $project_name" - Write-Host "Results Artifact Name: $test_results_artifact_name" - Write-Host "Working Directory: $working_directory" - echo "project_name=$project_name" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append - echo "test_results_artifact_name=$test_results_artifact_name" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append - # Set the Azure DevOps default working directory env variable, so our tests only need to deal with a single env variable - echo "SYSTEM_DEFAULTWORKINGDIRECTORY=$working_directory" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append - # Title for LiquidTestReports.Markdown - echo "title=Test Run for $project_name - ${{matrix.framework}} - ${{matrix.platform}} - ${{matrix.os}}" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append - shell: pwsh - - run: dotnet build ${{env.project_path}} --configuration ${{matrix.configuration}} --framework ${{matrix.framework}} /p:TestFrameworks=true - - run: dotnet test ${{env.project_path}} --configuration ${{matrix.configuration}} --framework ${{matrix.framework}} --no-build --no-restore --blame-hang --blame-hang-dump-type mini --blame-hang-timeout 20minutes --logger:"console;verbosity=normal" --logger:"trx;LogFileName=${{env.trx_file_name}}" --logger:"liquid.md;LogFileName=${{env.md_file_name}};Title=${{env.title}};" --results-directory:"${{github.workspace}}/${{env.test_results_artifact_name}}/${{env.project_name}}" -- RunConfiguration.TargetPlatform=${{matrix.platform}} TestRunParameters.Parameter\(name=\"tests:slow\",\ value=\"\${{env.run_slow_tests}}\"\) - shell: bash - # upload reports as build artifacts - - name: Upload a Build Artifact - uses: actions/upload-artifact@v3 - if: ${{always()}} - with: - name: '${{env.test_results_artifact_name}}' - path: '${{github.workspace}}/${{env.test_results_artifact_name}}' - diff --git a/src/Lucene.Net.Tests.Analysis.OpenNLP/Lucene - Backup.Net.Tests.Analysis.OpenNLP.csproj b/src/Lucene.Net.Tests.Analysis.OpenNLP/Lucene - Backup.Net.Tests.Analysis.OpenNLP.csproj deleted file mode 100644 index d880584623..0000000000 --- a/src/Lucene.Net.Tests.Analysis.OpenNLP/Lucene - Backup.Net.Tests.Analysis.OpenNLP.csproj +++ /dev/null @@ -1,58 +0,0 @@ - - - - - - - - - net7.0;net6.0 - $(TargetFrameworks);net48 - - Lucene.Net.Tests.Analysis.OpenNLP - Lucene.Net.Analysis.OpenNlp - - - - - false - false - - net7.0 - net48 - - - - - - - - - - - - - - - - -