Skip to content

Commit 3c3e751

Browse files
committed
Merge branch 'WcfClientBinding' of https://github.com/repl-chris/opentelemetry-dotnet-contrib into WcfClientBinding
2 parents 6d80014 + 04cc8c1 commit 3c3e751

45 files changed

Lines changed: 191 additions & 112 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/ci-aot.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Publish AOTCompatibility testApp
2+
3+
on:
4+
push:
5+
branches: [ 'main*' ]
6+
paths:
7+
- 'src/OpenTelemetry.Instrumentation.Runtime/**'
8+
- '!src/OpenTelemetry.Instrumentation.Runtime/README.md'
9+
pull_request:
10+
branches: [ 'main*' ]
11+
paths:
12+
- 'src/OpenTelemetry.Instrumentation.Runtime/**'
13+
- '!src/OpenTelemetry.Instrumentation.Runtime/README.md'
14+
15+
jobs:
16+
aot-test:
17+
strategy:
18+
fail-fast: false # ensures the entire test matrix is run, even if one permutation fails
19+
matrix:
20+
os: [ ubuntu-latest ]
21+
version: [ net7.0 ]
22+
23+
runs-on: ${{ matrix.os }}
24+
steps:
25+
- uses: actions/checkout@v3
26+
27+
- name: publish AOT testApp, assert static analysis warning count, and run the app
28+
shell: pwsh
29+
run: .\build\test-aot-compatibility.ps1 ${{ matrix.version }}
30+

.github/workflows/ci.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,8 @@ jobs:
2626
steps:
2727
- uses: actions/checkout@v3
2828

29-
- name: Install .NET 7 SDK
30-
uses: actions/setup-dotnet@v3.2.0
31-
with:
32-
dotnet-version: '7.0.x'
29+
- name: Setup dotnet
30+
uses: actions/setup-dotnet@v3
3331

3432
- name: Install dependencies
3533
run: dotnet restore

.github/workflows/dotnet-core-cov.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,8 @@ jobs:
2424
with:
2525
fetch-depth: 0 # fetching all
2626

27-
- name: Setup .NET 7.0
28-
uses: actions/setup-dotnet@v3.2.0
29-
with:
30-
dotnet-version: '7.0.x'
27+
- name: Setup dotnet
28+
uses: actions/setup-dotnet@v3
3129

3230
- name: Install dependencies
3331
run: dotnet restore

.github/workflows/dotnet-format.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,8 @@ jobs:
2020
- name: check out code
2121
uses: actions/checkout@v3
2222

23-
- name: Install .NET 7 SDK
24-
uses: actions/setup-dotnet@v3.2.0
25-
with:
26-
dotnet-version: '7.0.x'
23+
- name: Setup dotnet
24+
uses: actions/setup-dotnet@v3
2725

2826
- name: Install format tool
2927
run: dotnet tool install -g dotnet-format

.github/workflows/package-Exporter.Geneva.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,8 @@ jobs:
2828
with:
2929
fetch-depth: 0 # fetching all
3030

31-
- uses: actions/setup-dotnet@v3.2.0
32-
with:
33-
dotnet-version: '7.0.x'
31+
- name: Setup dotnet
32+
uses: actions/setup-dotnet@v3
3433

3534
- name: Install dependencies
3635
run: dotnet restore src/${{env.PROJECT}}

.github/workflows/package-Exporter.InfluxDB.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,8 @@ jobs:
2828
with:
2929
fetch-depth: 0 # fetching all
3030

31-
- uses: actions/setup-dotnet@v3.2.0
32-
with:
33-
dotnet-version: '7.0.x'
31+
- name: Setup dotnet
32+
uses: actions/setup-dotnet@v3
3433

3534
- name: Install dependencies
3635
run: dotnet restore src/${{env.PROJECT}}

.github/workflows/package-Exporter.Instana.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,8 @@ jobs:
2828
with:
2929
fetch-depth: 0 # fetching all
3030

31-
- uses: actions/setup-dotnet@v3.2.0
32-
with:
33-
dotnet-version: '7.0.x'
31+
- name: Setup dotnet
32+
uses: actions/setup-dotnet@v3
3433

3534
- name: Install dependencies
3635
run: dotnet restore src/${{env.PROJECT}}

.github/workflows/package-Exporter.OneCollector.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,8 @@ jobs:
2828
with:
2929
fetch-depth: 0 # fetching all
3030

31-
- uses: actions/setup-dotnet@v3.2.0
32-
with:
33-
dotnet-version: '7.0.x'
31+
- name: Setup dotnet
32+
uses: actions/setup-dotnet@v3
3433

3534
- name: Install dependencies
3635
run: dotnet restore src/${{env.PROJECT}}

.github/workflows/package-Exporter.Stackdriver.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,8 @@ jobs:
2828
with:
2929
fetch-depth: 0 # fetching all
3030

31-
- uses: actions/setup-dotnet@v3.2.0
32-
with:
33-
dotnet-version: '7.0.x'
31+
- name: Setup dotnet
32+
uses: actions/setup-dotnet@v3
3433

3534
- name: Install dependencies
3635
run: dotnet restore src/${{env.PROJECT}}

.github/workflows/package-Extensions.AWS.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,8 @@ jobs:
2828
with:
2929
fetch-depth: 0 # fetching all
3030

31-
- uses: actions/setup-dotnet@v3.2.0
32-
with:
33-
dotnet-version: '7.0.x'
31+
- name: Setup dotnet
32+
uses: actions/setup-dotnet@v3
3433

3534
- name: Install dependencies
3635
run: dotnet restore src/${{env.PROJECT}}

0 commit comments

Comments
 (0)