[wcf] Add AspNet parent span correction #2306
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: | |
pull_request: | |
branches: [ 'main*', 'instrumentation*', 'exporter*', 'extensions*' ] | |
paths-ignore: | |
- '**.md' | |
- '*/OpenTelemetry.Exporter.Geneva*/**' | |
- '*/OpenTelemetry.Exporter.OneCollector*/**' | |
- '*/OpenTelemetry.Instrumentation.Owin*/**' | |
- '*/OpenTelemetry.Instrumentation.Process*/**' | |
- '*/OpenTelemetry.Instrumentation.Wcf*/**' | |
jobs: | |
build-test: | |
strategy: | |
fail-fast: false # ensures the entire test matrix is run, even if one permutation fails | |
matrix: | |
os: [ windows-latest, ubuntu-latest ] | |
version: [ net462, net6.0, net7.0 ] | |
exclude: | |
- os: ubuntu-latest | |
version: net462 | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup dotnet | |
uses: actions/setup-dotnet@v3 | |
- name: Restore | |
run: dotnet restore | |
- name: Build | |
run: dotnet build --configuration Release --no-restore | |
- name: Test ${{ matrix.version }} | |
shell: pwsh | |
run: | | |
$projects = Get-ChildItem ` | |
-Path test/*.Tests/*.csproj ` | |
-Exclude ` | |
OpenTelemetry.Exporter.Geneva.Tests.csproj, | |
OpenTelemetry.Exporter.OneCollector.Tests.csproj, | |
OpenTelemetry.Instrumentation.Owin.Tests.csproj, | |
OpenTelemetry.Instrumentation.Process.Tests.csproj, | |
OpenTelemetry.Instrumentation.Wcf.Tests.csproj | |
ForEach ($project in $projects) | |
{ | |
dotnet test $project.FullName --collect:"Code Coverage" --results-directory:"TestResults" --framework ${{ matrix.version }} --configuration Release --no-restore --no-build --logger:"console;verbosity=detailed" -- RunConfiguration.DisableAppDomain=true | |
} | |
- name: Install coverage tool | |
run: dotnet tool install -g dotnet-coverage | |
- name: Merging test results | |
run: dotnet-coverage merge -r -f cobertura -o ./TestResults/Cobertura.xml ./TestResults/*.coverage | |
- uses: codecov/[email protected] | |
continue-on-error: true # Note: Don't fail for upload failures | |
env: | |
OS: ${{ matrix.os }} | |
TFM: ${{ matrix.version }} | |
with: | |
file: TestResults/Cobertura.xml | |
env_vars: OS,TFM | |
flags: unittests | |
name: Code Coverage for solution on [${{ matrix.os }}.${{ matrix.version }}] |