Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ensure SKU gen 2 files are in the build outputs, remove unused files #677

Merged
merged 1 commit into from
Apr 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion src/TesApi.Web/BatchScheduler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,6 @@ public BatchScheduler(
_batchPoolFactory = poolFactory;
batchPrefix = batchSchedulingOptions.Value.Prefix;
logger.LogInformation("BatchPrefix: {BatchPrefix}", batchPrefix);
File.ReadAllLines(Path.Combine(AppContext.BaseDirectory, "scripts/task-run.sh"));
this.runnerMD5 = File.ReadAllText(Path.Combine(AppContext.BaseDirectory, $"scripts/{NodeTaskRunnerMD5HashFilename}")).Trim();

this.gen2BatchNodeInfo = new BatchNodeInfo
Expand Down
15 changes: 6 additions & 9 deletions src/TesApi.Web/TesApi.Web.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -49,15 +49,6 @@
</AssemblyAttribute>
</ItemGroup>

<ItemGroup>
<None Include="scripts\clean-executor.sh">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Include="scripts\task-run.sh">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\CommonUtilities\CommonUtilities.csproj" />
<ProjectReference Include="..\Tes.ApiClients\Tes.ApiClients.csproj" />
Expand All @@ -69,5 +60,11 @@
<None Update="tes-compliance-test\entrypoint.sh">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="scripts\config-docker.sh">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="scripts\config-nvme.sh">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>
5 changes: 0 additions & 5 deletions src/TesApi.Web/scripts/clean-executor.sh

This file was deleted.

9 changes: 0 additions & 9 deletions src/TesApi.Web/scripts/task-run.sh

This file was deleted.

Loading