Skip to content

Commit b64027e

Browse files
committed
Added missing SDKs
1 parent 5d5a674 commit b64027e

File tree

3 files changed

+22
-9
lines changed

3 files changed

+22
-9
lines changed

.github/workflows/wf-build-release-ci.yml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@ jobs:
1717
uses: actions/setup-dotnet@v1
1818
with:
1919
dotnet-version: |
20+
1.0.x
2021
2.0.x
22+
5.0.x
2123
6.0.x
2224
2325
- name: Setup MSBuild Path
@@ -52,7 +54,9 @@ jobs:
5254
uses: actions/setup-dotnet@v1
5355
with:
5456
dotnet-version: |
57+
1.0.x
5558
2.0.x
59+
5.0.x
5660
6.0.x
5761
5862
- name: Run test .NET 3.5
@@ -61,9 +65,8 @@ jobs:
6165
- name: Run test .NET 4.52
6266
run: dotnet test -c Release -f net452 --nologo --no-build # No coverage for NET4.5 because of bug in combination with Coverlet+Stron naming
6367

64-
# Skip 1.3 test due to missing support on Github runner
65-
# - name: Run test .NET Core 1.3
66-
# run: dotnet test -c Release -f netcoreapp1.3 --nologo
68+
- name: Run test .NET Core 1.1
69+
run: dotnet test -c Release -f netcoreapp1.1 --nologo /p:CollectCoverage=true /p:CoverletOutputFormat=opencover
6770

6871
- name: Run test .NET Core 2.0
6972
run: dotnet test -c Release -f netcoreapp2.0 --nologo /p:CollectCoverage=true /p:CoverletOutputFormat=opencover
@@ -132,7 +135,9 @@ jobs:
132135
uses: actions/setup-dotnet@v1
133136
with:
134137
dotnet-version: |
138+
1.0.x
135139
2.0.x
140+
5.0.x
136141
6.0.x
137142
138143
- name: Restore dependencies

.github/workflows/wf-build-release.yml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,9 @@ jobs:
1818
uses: actions/setup-dotnet@v1
1919
with:
2020
dotnet-version: |
21+
1.0.x
2122
2.0.x
23+
5.0.x
2224
6.0.x
2325
2426
- name: Setup MSBuild Path
@@ -53,7 +55,9 @@ jobs:
5355
uses: actions/setup-dotnet@v1
5456
with:
5557
dotnet-version: |
58+
1.0.x
5659
2.0.x
60+
5.0.x
5761
6.0.x
5862
5963
- name: Run test .NET 3.5
@@ -62,9 +66,8 @@ jobs:
6266
- name: Run test .NET 4.52
6367
run: dotnet test -c Release -f net452 --nologo --no-build # No coverage for NET4.5 because of bug in combination with Coverlet+Stron naming
6468

65-
# Skip 1.3 test due to missing support on Github runner
66-
# - name: Run test .NET Core 1.3
67-
# run: dotnet test -c Release -f netcoreapp1.3 --nologo
69+
- name: Run test .NET Core 1.1
70+
run: dotnet test -c Release -f netcoreapp1.1 --nologo /p:CollectCoverage=true /p:CoverletOutputFormat=opencover
6871

6972
- name: Run test .NET Core 2.0
7073
run: dotnet test -c Release -f netcoreapp2.0 --nologo /p:CollectCoverage=true /p:CoverletOutputFormat=opencover
@@ -132,7 +135,9 @@ jobs:
132135
uses: actions/setup-dotnet@v1
133136
with:
134137
dotnet-version: |
138+
1.0.x
135139
2.0.x
140+
5.0.x
136141
6.0.x
137142
138143
- name: Restore dependencies

.github/workflows/wf-build-test.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@ jobs:
1717
uses: actions/setup-dotnet@v1
1818
with:
1919
dotnet-version: |
20+
1.0.x
2021
2.0.x
22+
5.0.x
2123
6.0.x
2224
2325
- name: Setup MSBuild Path
@@ -52,7 +54,9 @@ jobs:
5254
uses: actions/setup-dotnet@v1
5355
with:
5456
dotnet-version: |
57+
1.0.x
5558
2.0.x
59+
5.0.x
5660
6.0.x
5761
5862
- name: Run test .NET 3.5
@@ -61,9 +65,8 @@ jobs:
6165
- name: Run test .NET 4.52
6266
run: dotnet test -c Release -f net452 --nologo --no-build # No coverage for NET4.5 because of bug in combination with Coverlet+Stron naming
6367

64-
# Skip 1.3 test due to missing support on Github runner
65-
# - name: Run test .NET Core 1.3
66-
# run: dotnet test -c Release -f netcoreapp1.3 --nologo
68+
- name: Run test .NET Core 1.1
69+
run: dotnet test -c Release -f netcoreapp1.1 --nologo /p:CollectCoverage=true /p:CoverletOutputFormat=opencover
6770

6871
- name: Run test .NET Core 2.0
6972
run: dotnet test -c Release -f netcoreapp2.0 --nologo /p:CollectCoverage=true /p:CoverletOutputFormat=opencover

0 commit comments

Comments
 (0)