Skip to content

Commit 61fe15d

Browse files
committed
Removing netcoreapp3.1 test target
This isn't able to run on Ubuntu 24 builders. Initially was an ICU (Internationalization) failure. Then configured off internationalization and got a libssl version error (Ubuntu 24 has 3.0 but .NET Core 3.1 expects 1.1)
1 parent 0b32cbe commit 61fe15d

File tree

2 files changed

+1
-12
lines changed

2 files changed

+1
-12
lines changed

.github/workflows/ci.yml

-10
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ jobs:
2323
uses: actions/setup-dotnet@v3
2424
with:
2525
dotnet-version: |
26-
3.1.x
2726
8.0.x
2827
- name: Build
2928
run: dotnet build
@@ -55,7 +54,6 @@ jobs:
5554
uses: actions/setup-dotnet@v3
5655
with:
5756
dotnet-version: |
58-
3.1.x
5957
8.0.x
6058
- name: Test
6159
run: dotnet test --filter "Category=${{ matrix.provider }}&(Category=BVT|Category=SlowBVT|Category=Functional)" --blame-hang-timeout 10m --logger "trx" -- -parallel none -noshadow
@@ -83,7 +81,6 @@ jobs:
8381
uses: actions/setup-dotnet@v3
8482
with:
8583
dotnet-version: |
86-
3.1.x
8784
8.0.x
8885
- name: Test
8986
run: dotnet test --filter "Category=${{ matrix.provider }}&(Category=BVT|Category=SlowBVT|Category=Clustering)" --blame-hang-timeout 10m --logger "trx" -- -parallel none -noshadow
@@ -123,7 +120,6 @@ jobs:
123120
uses: actions/setup-dotnet@v3
124121
with:
125122
dotnet-version: |
126-
3.1.x
127123
8.0.x
128124
- name: Test
129125
run: dotnet test --filter "Category=${{ matrix.provider }}&(Category=BVT|Category=SlowBVT|Category=Functional)" --blame-hang-timeout 10m --logger "trx" -- -parallel none -noshadow
@@ -159,7 +155,6 @@ jobs:
159155
uses: actions/setup-dotnet@v3
160156
with:
161157
dotnet-version: |
162-
3.1.x
163158
8.0.x
164159
- name: Test
165160
run: dotnet test --filter "Category=${{ matrix.provider }}&(Category=BVT|Category=SlowBVT|Category=Functional)" --blame-hang-timeout 10m --logger "trx" -- -parallel none -noshadow
@@ -197,7 +192,6 @@ jobs:
197192
uses: actions/setup-dotnet@v3
198193
with:
199194
dotnet-version: |
200-
3.1.x
201195
8.0.x
202196
- name: Test
203197
run: dotnet test --filter "Category=${{ matrix.provider }}&(Category=BVT|Category=SlowBVT|Category=Functional)" --blame-hang-timeout 10m --logger "trx" -- -parallel none -noshadow
@@ -235,7 +229,6 @@ jobs:
235229
uses: actions/setup-dotnet@v3
236230
with:
237231
dotnet-version: |
238-
3.1.x
239232
8.0.x
240233
- name: Test
241234
run: dotnet test --filter "Category=${{ matrix.provider }}&Category=${{ matrix.suite }}" --framework ${{ matrix.framework }} --blame-hang-timeout 10m --logger "trx" -- -parallel none -noshadow
@@ -318,7 +311,6 @@ jobs:
318311
uses: actions/setup-dotnet@v3
319312
with:
320313
dotnet-version: |
321-
3.1.x
322314
8.0.x
323315
- name: Test
324316
run: dotnet test --filter "Category=${{ matrix.provider }}&(Category=BVT|Category=SlowBVT|Category=Functional)" --blame-hang-timeout 10m --logger "trx" -- -parallel none -noshadow
@@ -355,7 +347,6 @@ jobs:
355347
uses: actions/setup-dotnet@v3
356348
with:
357349
dotnet-version: |
358-
3.1.x
359350
8.0.x
360351
- name: Test
361352
run: dotnet test --filter "Category=${{ matrix.provider }}&(Category=BVT|Category=SlowBVT|Category=Functional)" --blame-hang-timeout 10m --logger "trx" -- -parallel none -noshadow
@@ -393,7 +384,6 @@ jobs:
393384
uses: actions/setup-dotnet@v3
394385
with:
395386
dotnet-version: |
396-
3.1.x
397387
8.0.x
398388
- name: Test
399389
run: dotnet test --filter "Category=${{ matrix.provider }}&(Category=BVT|Category=SlowBVT|Category=Functional)" --blame-hang-timeout 10m --logger "trx" -- -parallel none -noshadow

test/Orleans.Serialization.UnitTests/Orleans.Serialization.UnitTests.csproj

+1-2
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,11 @@
22

33
<PropertyGroup>
44
<IsTestProject>true</IsTestProject>
5-
<TargetFrameworks>$(TestTargetFrameworks);netcoreapp3.1</TargetFrameworks>
5+
<TargetFrameworks>$(TestTargetFrameworks)</TargetFrameworks>
66
<GenerateBindingRedirectsOutputType>true</GenerateBindingRedirectsOutputType>
77
<OrleansBuildTimeCodeGen>true</OrleansBuildTimeCodeGen>
88
<ImplicitUsings>disable</ImplicitUsings>
99
<SuppressTfmSupportBuildWarnings>true</SuppressTfmSupportBuildWarnings>
10-
<InvariantGlobalization>true</InvariantGlobalization>
1110
</PropertyGroup>
1211

1312
<ItemGroup>

0 commit comments

Comments
 (0)