Skip to content

Commit 0f7d9f7

Browse files
QUnit / Runner: net6 -> net8 (DevExpress#31046)
Co-authored-by: Mikhail Preyskurantov <5574159+mpreyskurantov@users.noreply.github.com>
1 parent 7968f78 commit 0f7d9f7

File tree

4 files changed

+22
-7
lines changed

4 files changed

+22
-7
lines changed

.github/workflows/build_all.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99

1010
jobs:
1111
build:
12-
runs-on: devextreme-shr2
12+
runs-on: ubuntu-latest
1313

1414
steps:
1515
- name: Get sources
@@ -20,6 +20,11 @@ jobs:
2020
with:
2121
node-version: '20'
2222

23+
- name: Set up .NET
24+
uses: actions/setup-dotnet@v4
25+
with:
26+
dotnet-version: 6.0.x
27+
2328
- uses: pnpm/action-setup@v3
2429
with:
2530
version: 9

.github/workflows/ts_declarations.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
fi
6666
6767
validate-declarations:
68-
runs-on: devextreme-shr2
68+
runs-on: ubuntu-latest
6969
timeout-minutes: 60
7070
steps:
7171
- name: Get sources
@@ -76,6 +76,11 @@ jobs:
7676
with:
7777
node-version: '20'
7878

79+
- name: Set up .NET
80+
uses: actions/setup-dotnet@v4
81+
with:
82+
dotnet-version: 6.0.x
83+
7984
- uses: pnpm/action-setup@v3
8085
with:
8186
version: 9

.github/workflows/wrapper_tests.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ env:
1414

1515
jobs:
1616
test:
17-
runs-on: devextreme-shr2
17+
runs-on: ubuntu-22.04
1818
timeout-minutes: 40
1919

2020
steps:
@@ -31,6 +31,11 @@ jobs:
3131
with:
3232
node-version: '20'
3333

34+
- name: Set up .NET
35+
uses: actions/setup-dotnet@v4
36+
with:
37+
dotnet-version: 6.0.x
38+
3439
- uses: pnpm/action-setup@v3
3540
with:
3641
version: 9

packages/devextreme/testing/runner/runner.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
<Project Sdk="Microsoft.NET.Sdk.Web" ToolsVersion="15.0">
1+
<Project Sdk="Microsoft.NET.Sdk.Web">
22

33
<ItemGroup>
4-
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="6.0.27" />
5-
<PackageReference Include="Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation" Version="6.0.27" />
4+
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="8.0.19" />
5+
<PackageReference Include="Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation" Version="8.0.19" />
66
</ItemGroup>
77

88
<PropertyGroup>
9-
<TargetFramework>net6</TargetFramework>
9+
<TargetFramework>net8.0</TargetFramework>
1010
<PreserveCompilationContext>true</PreserveCompilationContext>
1111
<StartupObject>Runner.Program</StartupObject>
1212
<OutputType>Exe</OutputType>

0 commit comments

Comments
 (0)