Skip to content

Commit

Permalink
Merge pull request #39 from TestCentric/issue-38
Browse files Browse the repository at this point in the history
Add CI Workflow
  • Loading branch information
CharliePoole authored Oct 12, 2024
2 parents 52013ac + 066fdd8 commit 453e00c
Show file tree
Hide file tree
Showing 4 changed files with 81 additions and 4 deletions.
68 changes: 68 additions & 0 deletions .github/workflows/testcentric-gui-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
name: TestCentric.Net462Agent.CI

on:
workflow_dispatch:
pull_request:
push:
paths-ignore:
- "*.txt"
- "*.md"

env:
DOTNET_NOLOGO: true # Disable the .NET logo
DOTNET_CLI_TELEMETRY_OPTOUT: true # Disable sending .NET CLI telemetry

jobs:
ContinuousIntegration:
name: Continuous Integration
runs-on: windows-latest

env:
TESTCENTRIC_MYGET_API_KEY: ${{ secrets.TESTCENTRIC_MYGET_API_KEY }}
TESTCENTRIC_NUGET_API_KEY: ${{ secrets.TESTCENTRIC_NUGET_API_KEY }}
TESTCENTRIC_CHOCO_API_KEY: ${{ secrets.TESTCENTRIC_CHOCO_API_KEY }}
GITHUB_ACCESS_TOKEN: ${{ secrets.TESTCENTRIC_GITHUB_ACCESS_TOKEN }}

steps:
- name: ⤵️ Checkout Source
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: 🔧 Install dotnet tools
run: dotnet tool restore

- name: 🍰 Run cake
env:
TESTCENTRIC_MYGET_API_KEY: ${{ secrets.TESTCENTRIC_MYGET_API_KEY }}
TESTCENTRIC_NUGET_API_KEY: ${{ secrets.TESTCENTRIC_NUGET_API_KEY }}
TESTCENTRIC_CHOCO_API_KEY: ${{ secrets.TESTCENTRIC_CHOCO_API_KEY }}
GITHUB_ACCESS_TOKEN: ${{ secrets.TESTCENTRIC_GITHUB_ACCESS_TOKEN }}

# If you need to get more verbose logging, add the following to the dotnet-cake above: --verbosity=diagnostic
run: dotnet cake --target=ContinuousIntegration --configuration=Release

- name: 🪵 Upload build logs
if: always()
uses: actions/upload-artifact@v4
with:
name: Upload Console Logs
# This path is defined in build-settings.cake
path: "build-results/*.binlog"
# if-no-files-found: error

- name: 🪵 Upload InternalTrace logs
if: always()
uses: actions/upload-artifact@v4
with:
name: InternalTraceLogs
# This path is defined in build-settings.cake
path: "*.log"
# if-no-files-found: error

- name: 💾 Upload test results
uses: actions/upload-artifact@v4
if: always()
with:
name: "Test Results"
path: test-results
2 changes: 1 addition & 1 deletion build.cake
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Load the recipe
#load nuget:?package=TestCentric.Cake.Recipe&version=1.3.2
#load nuget:?package=TestCentric.Cake.Recipe&version=1.3.3
// Comment out above line and uncomment below for local tests of recipe changes
//#load ../TestCentric.Cake.Recipe/recipe/*.cake

Expand Down
4 changes: 2 additions & 2 deletions src/testcentric.engine.api/testcentric.engine.api.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="TestCentric.Extensibility.Api" Version="3.0.0" />
<PackageReference Include="TestCentric.InternalTrace" Version="1.2.0" />
<PackageReference Include="TestCentric.Extensibility.Api" Version="3.0.1" />
<PackageReference Include="TestCentric.InternalTrace" Version="1.2.1" />
</ItemGroup>

</Project>
11 changes: 10 additions & 1 deletion testcentric.engine.api.sln
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,14 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "nuget", "nuget", "{79FED62B
nuget\TestCentric.Engine.Api.nuspec = nuget\TestCentric.Engine.Api.nuspec
EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TestCentric.Engine.Api.Tests", "src\TestCentric.Engine.Api.Tests\TestCentric.Engine.Api.Tests.csproj", "{3A99C7F4-4918-42BC-8364-0618F454B616}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TestCentric.Engine.Api.Tests", "src\TestCentric.Engine.Api.Tests\TestCentric.Engine.Api.Tests.csproj", "{3A99C7F4-4918-42BC-8364-0618F454B616}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".github", ".github", "{4EF13283-256F-4CFE-97B7-2FFFB23145B0}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "workflows", "workflows", "{660649B9-30E3-4A6B-85C8-68CF25097169}"
ProjectSection(SolutionItems) = preProject
..\TestCentric.InternalTrace\.github\workflows\testcentric-internal-trace.ci.yml = ..\TestCentric.InternalTrace\.github\workflows\testcentric-internal-trace.ci.yml
EndProjectSection
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand All @@ -49,6 +56,8 @@ Global
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{79FED62B-5228-43F8-8DB9-95841F8534B3} = {E5D814AC-758E-4AB0-94F2-465CD467362C}
{4EF13283-256F-4CFE-97B7-2FFFB23145B0} = {E5D814AC-758E-4AB0-94F2-465CD467362C}
{660649B9-30E3-4A6B-85C8-68CF25097169} = {4EF13283-256F-4CFE-97B7-2FFFB23145B0}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {4AA81645-C1F0-4C48-A401-63D326070B6E}
Expand Down

0 comments on commit 453e00c

Please sign in to comment.