Skip to content

Commit

Permalink
remove Lucene analyzer workaround on pipelines
Browse files Browse the repository at this point in the history
  • Loading branch information
lumimario committed Jan 22, 2022
1 parent 43ec162 commit 7fc0718
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 18 deletions.
9 changes: 0 additions & 9 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,6 @@ jobs:
- name: Restore NuGet packages
run: msbuild ${{ env.SOLUTION }} -t:restore

- name: Copy lucene analyser
run: |
$src = "C:\Users\runneradmin\.nuget\packages\lucene.net\4.8.0-beta00014\analyzers\dotnet\cs"
$dest = "C:\Users\runneradmin\.nuget\packages\lucene.net\3.0.3\analyzers\dotnet\cs"
if (!(Test-Path -Path $dest)) {
New-Item -ItemType directory -Path $dest
}
Copy-Item -Path $src\*.dll -Destination $dest
- name: Build solution
run: msbuild ${{ env.SOLUTION }} -p:Configuration=Release -p:GeneratePackageOnBuild=true -p:PackageOutputPath=${{ env.OUTPUT_PATH }}

Expand Down
9 changes: 0 additions & 9 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,15 +40,6 @@ jobs:
- name: Restore NuGet packages
run: msbuild ${{ env.SOLUTION }} -t:restore

- name: Copy lucene analyser
run: |
$src = "C:\Users\runneradmin\.nuget\packages\lucene.net\4.8.0-beta00014\analyzers\dotnet\cs"
$dest = "C:\Users\runneradmin\.nuget\packages\lucene.net\3.0.3\analyzers\dotnet\cs"
if (!(Test-Path -Path $dest)) {
New-Item -ItemType directory -Path $dest
}
Copy-Item -Path $src\*.dll -Destination $dest
- name: Create Nuget Packages
run: msbuild ${{ env.SOLUTION }} -p:Configuration=Release -p:GeneratePackageOnBuild=true -p:PackageOutputPath=${{ env.OUTPUT_PATH }}

Expand Down

0 comments on commit 7fc0718

Please sign in to comment.