Skip to content

Commit

Permalink
Merge pull request #1271 from dsyme/master
Browse files Browse the repository at this point in the history
split appveyor into 3 parts
  • Loading branch information
dsyme authored Jun 20, 2016
2 parents 989b7af + b3d130a commit 3365a62
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 3 deletions.
1 change: 1 addition & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ environment:
matrix:
- BUILD_PROFILE: ci_part1
- BUILD_PROFILE: ci_part2
- BUILD_PROFILE: ci_part3

init:
- git config --global core.autocrlf true
Expand Down
30 changes: 27 additions & 3 deletions build.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ echo Build and run a subset of test suites
echo.
echo Usage:
echo.
echo build.cmd ^<all^|proto^|build^|debug^|release^|diag^|compiler^|coreclr^|pcls^|vs^|ci^|ci_part1^|ci_part2^|microbuild^>
echo build.cmd ^<all^|proto^|build^|debug^|release^|diag^|compiler^|coreclr^|pcls^|vs^|ci^|ci_part1^|ci_part2^|ci_part3^|microbuild^>
echo.
echo No arguments default to 'build'
echo.
Expand Down Expand Up @@ -153,18 +153,42 @@ if /i '%ARG%' == 'ci_part1' (
set TEST_NET40_COREUNIT=1
set TEST_PORTABLE_COREUNIT=1
set TEST_CORECLR=0
set TEST_TAGS=
set TEST_FSHARPQA_SUITE=0
set TEST_FSHARP_SUITE=0
set TEST_VS=1
set TEST_TAGS=
)

if /i '%ARG%' == 'ci_part2' (
set BUILD_PROTO=1
set SKIP_EXPENSIVE_TESTS=1
set BUILD_CORECLR=1
set BUILD_PORTABLE=1

set TEST_COMPILERUNIT=0
set TEST_NET40_COREUNIT=0
set TEST_PORTABLE_COREUNIT=0
set TEST_CORECLR=1
set TEST_FSHARPQA_SUITE=1
set TEST_FSHARPQA_SUITE=0
set TEST_FSHARP_SUITE=1
set TEST_VS=0
set TEST_TAGS=
)

if /i '%ARG%' == 'ci_part3' (
set BUILD_PROTO=1
set SKIP_EXPENSIVE_TESTS=1
set BUILD_CORECLR=1
set BUILD_PORTABLE=1

set TEST_COMPILERUNIT=0
set TEST_NET40_COREUNIT=0
set TEST_PORTABLE_COREUNIT=0
set TEST_CORECLR=0
set TEST_FSHARPQA_SUITE=1
set TEST_FSHARP_SUITE=0
set TEST_VS=0
set TEST_TAGS=
)

if /i '%ARG%' == 'coreclr' (
Expand Down

0 comments on commit 3365a62

Please sign in to comment.