Skip to content

Commit

Permalink
change CI to part1/part2
Browse files Browse the repository at this point in the history
  • Loading branch information
dsyme committed Jun 21, 2016
1 parent cad6ec2 commit c1512fc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 22 deletions.
1 change: 0 additions & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ environment:
matrix:
- BUILD_PROFILE: ci_part1
- BUILD_PROFILE: ci_part2
- BUILD_PROFILE: ci_part3

init:
- git config --global core.autocrlf true
Expand Down
27 changes: 6 additions & 21 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^|ci_part3^|microbuild^>
echo build.cmd ^<all^|proto^|build^|debug^|release^|diag^|compiler^|coreclr^|pcls^|vs^|ci^|ci_part1^|ci_part2^|microbuild^>
echo.
echo No arguments default to 'build'
echo.
Expand Down Expand Up @@ -150,10 +150,10 @@ if /i '%ARG%' == 'ci_part1' (
set BUILD_VS=1

set TEST_COMPILERUNIT=1
set TEST_NET40_COREUNIT=1
set TEST_PORTABLE_COREUNIT=1
set TEST_NET40_COREUNIT=0
set TEST_PORTABLE_COREUNIT=0
set TEST_CORECLR=0
set TEST_FSHARPQA_SUITE=0
set TEST_FSHARPQA_SUITE=1
set TEST_FSHARP_SUITE=0
set TEST_VS=1
set TEST_TAGS=
Expand All @@ -166,30 +166,15 @@ if /i '%ARG%' == 'ci_part2' (
set BUILD_PORTABLE=1

set TEST_COMPILERUNIT=0
set TEST_NET40_COREUNIT=0
set TEST_PORTABLE_COREUNIT=0
set TEST_NET40_COREUNIT=1
set TEST_PORTABLE_COREUNIT=1
set TEST_CORECLR=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' (
set BUILD_CORECLR=1
Expand Down

0 comments on commit c1512fc

Please sign in to comment.