File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2222 run : chmod u+x build.sh
2323 - name : Build and test
2424 working-directory : ./
25- run : ./build.sh runtests
25+ run : ./build.sh runtestsallnonetfx
2626
2727 build-and-test-windows :
2828
3636 dotnet-version : 6.x.x
3737 - name : Build and test (includes netfx)
3838 working-directory : ./
39- run : ./build.cmd runtestsnetfx
39+ run : ./build.cmd runtestsall
Original file line number Diff line number Diff line change @@ -20,6 +20,8 @@ let createTestBuildTask (name: string) (deps: BuildTask.TaskInfo list) (projects
2020 }
2121
2222let buildTestsAll = createTestBuildTask " BuildTestsAll" [ clean; build] ( testProjectsCore @ testProjectsExtensionsLibs @ testProjectsNetFX)
23+
24+ let buildTestsAllNoNetFX = createTestBuildTask " BuildTestsAllNoNetFX" [ clean; build] ( testProjectsCore @ testProjectsExtensionsLibs)
2325
2426let buildTestsCore = createTestBuildTask " BuildTestsCore" [ clean; build] testProjectsCore
2527
@@ -45,6 +47,9 @@ let createRunTestTask (name: string) (deps: BuildTask.TaskInfo list) (projects:
4547/// runs the all test projects via ` dotnet test `
4648let runTestsAll = createRunTestTask " RunTestsAll" [ clean; build; buildTestsAll ] ( testProjectsCore @ testProjectsExtensionsLibs @ testProjectsNetFX)
4749
50+ /// runs the all test projects except those targeting netfx via ` dotnet test `
51+ let runTestsAllNoNetFX = createRunTestTask " RunTestsAllNoNetFX" [ clean; build; buildTestsAllNoNetFX ] ( testProjectsCore @ testProjectsExtensionsLibs)
52+
4853/// runs the core test projects via ` dotnet test `
4954let runTestsCore = createRunTestTask " RunTestsCore" [ clean; build; buildTestsCore; buildTestsCore] testProjectsCore
5055
You can’t perform that action at this time.
0 commit comments