Skip to content

Commit

Permalink
Add Github Workflow action for CI build
Browse files Browse the repository at this point in the history
  • Loading branch information
CharliePoole committed Oct 14, 2024
1 parent 2d795ea commit beebbf0
Show file tree
Hide file tree
Showing 6 changed files with 33 additions and 12 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/net462-pluggable-agent-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
name: Net462PluggableAgent.CI

on:
workflow_dispatch:
pull_request:
push:

jobs:
ContinuousIntegration:
uses: TestCentric/TestCentric.WorkFlows/.github/workflows/testcentric-ci.yml@main
secrets: inherit
9 changes: 9 additions & 0 deletions net462-pluggable-agent.sln
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,13 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "choco", "choco", "{DB1D27AE
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "mock-assembly-x86", "src\mock-assembly-x86\mock-assembly-x86.csproj", "{8ED7E1A4-8059-4159-B378-52E5C8B7F874}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".github", ".github", "{52F11D26-D2A8-48AC-97C9-D4C8087AC39B}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "workflows", "workflows", "{96585370-2B84-40FA-8C14-C605FD93B571}"
ProjectSection(SolutionItems) = preProject
.github\workflows\net462-pluggable-agent-ci.yml = .github\workflows\net462-pluggable-agent-ci.yml
EndProjectSection
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand Down Expand Up @@ -129,6 +136,8 @@ Global
GlobalSection(NestedProjects) = preSolution
{B6516F48-F091-4BB4-A76E-F9C501EF1059} = {49BC1DFB-828F-49F4-B2B4-752AB470481D}
{DB1D27AE-4967-466A-88CF-2213452FBE5D} = {49BC1DFB-828F-49F4-B2B4-752AB470481D}
{52F11D26-D2A8-48AC-97C9-D4C8087AC39B} = {49BC1DFB-828F-49F4-B2B4-752AB470481D}
{96585370-2B84-40FA-8C14-C605FD93B571} = {52F11D26-D2A8-48AC-97C9-D4C8087AC39B}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {CAB7BD1E-1034-47CD-AA8E-FD4AC034193B}
Expand Down
4 changes: 2 additions & 2 deletions src/launcher/net462-agent-launcher.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="TestCentric.Extensibility.Api" Version="3.0.0" />
<PackageReference Include="TestCentric.Engine.Api" Version="2.0.0-dev00017" />
<PackageReference Include="TestCentric.Extensibility.Api" Version="3.0.2-dev00003" />
<PackageReference Include="TestCentric.Engine.Api" Version="2.0.0-dev00022" />
</ItemGroup>

</Project>
9 changes: 5 additions & 4 deletions src/net462-agent-x86/net462-agent-x86.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,11 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="TestCentric.Agent.Core" Version="2.1.0-dev00007" />
<PackageReference Include="TestCentric.Engine.Api" Version="2.0.0-dev00017" />
<PackageReference Include="TestCentric.Extensibility" Version="3.0.0" />
<PackageReference Include="TestCentric.InternalTrace" Version="1.2.0" />
<PackageReference Include="TestCentric.Agent.Core" Version="2.1.0-dev00011" />
<PackageReference Include="TestCentric.Engine.Api" Version="2.0.0-dev00022" />
<PackageReference Include="TestCentric.Extensibility" Version="3.0.2-dev00003" />
<PackageReference Include="TestCentric.Metadata" Version="3.0.3" />
<PackageReference Include="TestCentric.InternalTrace" Version="1.2.1" />
</ItemGroup>

<ItemGroup>
Expand Down
10 changes: 5 additions & 5 deletions src/net462-agent/net462-agent.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="TestCentric.Agent.Core" Version="2.1.0-dev00007" />
<PackageReference Include="TestCentric.Engine.Api" Version="2.0.0-dev00017" />
<PackageReference Include="TestCentric.Extensibility" Version="3.0.0" />
<PackageReference Include="TestCentric.Metadata" Version="3.0.2" />
<PackageReference Include="TestCentric.InternalTrace" Version="1.2.0" />
<PackageReference Include="TestCentric.Agent.Core" Version="2.1.0-dev00011" />
<PackageReference Include="TestCentric.Engine.Api" Version="2.0.0-dev00022" />
<PackageReference Include="TestCentric.Extensibility" Version="3.0.2-dev00003" />
<PackageReference Include="TestCentric.Metadata" Version="3.0.3" />
<PackageReference Include="TestCentric.InternalTrace" Version="1.2.1" />
</ItemGroup>

</Project>
2 changes: 1 addition & 1 deletion src/tests/net462-agent-launcher.tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<ItemGroup>
<PackageReference Include="NUnit" Version="4.1.0" />
<PackageReference Include="NUnitLite" Version="4.1.0" />
<PackageReference Include="TestCentric.Engine.Api" Version="2.0.0-dev00017" />
<PackageReference Include="TestCentric.Engine.Api" Version="2.0.0-dev00022" />
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit beebbf0

Please sign in to comment.