Skip to content

Commit f765dd0

Browse files
committed
split appveyor jobs
1 parent 8606aa9 commit f765dd0

File tree

2 files changed

+6
-12
lines changed

2 files changed

+6
-12
lines changed

appveyor.yml

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,7 @@ nuget:
1616
account_feed: false
1717
project_feed: true
1818

19-
#environment:
20-
# # these variables are common to all jobs
21-
# #common_var1: value1
22-
#
23-
# matrix:
24-
# # first group
25-
# - SkipIntegrationTests: true
26-
# # second group
27-
# - SkipNuGet: true
28-
19+
environment:
20+
matrix:
21+
- SkipIntegrationTestsNetCore: true
22+
- SkipIntegrationTestsNet: true

build.fsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -643,8 +643,8 @@ Target "All" DoNothing
643643

644644
"All"
645645
==> "MergePaketTool"
646-
=?> ("RunIntegrationTests", not <| hasBuildParam "SkipIntegrationTests")
647-
=?> ("RunIntegrationTestsNetCore", not <| (hasBuildParam "SkipIntegrationTests" || hasBuildParam "DISABLE_NETCORE"))
646+
=?> ("RunIntegrationTests", not <| (hasBuildParam "SkipIntegrationTests" || hasBuildParam "SkipIntegrationTestsNet"))
647+
=?> ("RunIntegrationTestsNetCore", not <| (hasBuildParam "SkipIntegrationTests" || hasBuildParam "SkipIntegrationTestsNetCore" || hasBuildParam "DISABLE_NETCORE"))
648648
==> "SignAssemblies"
649649
==> "CalculateDownloadHash"
650650
=?> ("NuGet", not <| hasBuildParam "SkipNuGet")

0 commit comments

Comments
 (0)