Skip to content

Commit

Permalink
fixing cicd errors 01
Browse files Browse the repository at this point in the history
  • Loading branch information
Modest-as committed Sep 19, 2020
1 parent 1924047 commit 6312080
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/master_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ jobs:
image: mysql:5.7
env:
MYSQL_ROOT_PASSWORD: password
MYSQL_DATABASE: lucene
ports:
- 3306:3306
options: --health-cmd="mysqladmin ping" --health-interval=10s
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/pull_request_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ jobs:
image: mysql:5.7
env:
MYSQL_ROOT_PASSWORD: password
MYSQL_DATABASE: lucene
ports:
- 3306:3306
options: --health-cmd="mysqladmin ping" --health-interval=10s
Expand Down
8 changes: 8 additions & 0 deletions Lucene.Net.Sql.MySql/Lucene.Net.Sql.MySql.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@

<LangVersion>8.0</LangVersion>
<Nullable>enable</Nullable>

<TargetsForTfmSpecificBuildOutput>$(TargetsForTfmSpecificBuildOutput);IncludeReferenceAssets</TargetsForTfmSpecificBuildOutput>
</PropertyGroup>

<ItemGroup>
Expand All @@ -43,4 +45,10 @@
<ItemGroup>
<None Include="../assets/icon.png" Pack="true" PackagePath="\" />
</ItemGroup>

<Target Name="IncludeReferenceAssets">
<ItemGroup>
<BuildOutputInPackage Include="$(OutputPath)Lucene.Net.Sql.dll" />
</ItemGroup>
</Target>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@

<ItemGroup>
<ProjectReference Include="..\Lucene.Net.Sql.MySql\Lucene.Net.Sql.MySql.csproj" />
<ProjectReference Include="..\Lucene.Net.Sql\Lucene.Net.Sql.csproj" />
</ItemGroup>

<ItemGroup>
Expand Down
3 changes: 1 addition & 2 deletions Lucene.Net.Sql.Performance/LuceneBenchmarkBase.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
using System;
using BenchmarkDotNet.Attributes;
using BenchmarkDotNet.Attributes;
using Lucene.Net.Analysis;
using Lucene.Net.Analysis.Standard;
using Lucene.Net.Index;
Expand Down
1 change: 1 addition & 0 deletions Lucene.Net.Sql.Tests/Lucene.Net.Sql.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@

<ItemGroup>
<ProjectReference Include="..\Lucene.Net.Sql.MySql\Lucene.Net.Sql.MySql.csproj" />
<ProjectReference Include="..\Lucene.Net.Sql\Lucene.Net.Sql.csproj" />
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit 6312080

Please sign in to comment.