forked from aws/aws-toolkit-common
-
Notifications
You must be signed in to change notification settings - Fork 0
/
csharpTests.yml
61 lines (48 loc) · 2.92 KB
/
csharpTests.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
version: 0.2
env:
variables:
DOTNET_CLI_TELEMETRY_OPTOUT: 1
phases:
install:
runtime-versions:
dotnet: 6
commands:
# Fixes for cloning aws net sdk and getting 'filename too long' errors
# LongPathsEnabled Reference:
# https://docs.microsoft.com/en-us/windows/win32/fileio/naming-a-file#enable-long-paths-in-windows-10-version-1607-and-later
- '& Set-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Control\FileSystem" -Name LongPathsEnabled -Value 1'
- git config --system core.longpaths true
build:
commands:
############################################################################################################
# Telemetry Events Generator
############################################################################################################
# Explicitly restore the .NET Framework projects or CodeBuild produces errors running dotnet build on the .sln :(
- dotnet -d restore .\telemetry\csharp\AwsToolkit.Telemetry.Events\AwsToolkit.Telemetry.Events.csproj
- dotnet -d restore .\telemetry\csharp\AwsToolkit.Telemetry.Events.Tests\AwsToolkit.Telemetry.Events.Tests.csproj
# Restore everything (else)
- dotnet -d restore ./telemetry/csharp/AwsToolkit.Telemetry.sln
# Build
- dotnet build -c Release ./telemetry/csharp/AwsToolkit.Telemetry.sln
# Test
- dotnet test -c Release ./telemetry/csharp/AwsToolkit.Telemetry.sln --logger trx --results-directory ./.testresults
############################################################################################################
# SDK Telemetry Client
############################################################################################################
# Generate the SDK Telemetry Client Source
- dotnet msbuild .\telemetry\csharp\TelemetryClient.proj
# Restore and Build the SDK Telemetry Client
- dotnet -d restore ./telemetry/csharp/AwsToolkit.Telemetry.SDK/AwsToolkit.Telemetry.SDK.csproj
- dotnet -d restore ./telemetry/csharp/AwsToolkit.Telemetry.SDK.sln
- dotnet build -c Release ./telemetry/csharp/AwsToolkit.Telemetry.SDK.sln
############################################################################################################
# Telemetry Events Datatypes
############################################################################################################
# Generate the NuGet package for supported datatypes
- dotnet msbuild -property:Configuration=Release ./telemetry/csharp/TelemetryPackage.proj
reports:
DotnetTestExamples:
file-format: VisualStudioTrx
files:
- '**/*'
base-directory: './.testresults'