Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions eng/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ usage()
echo " --rebuild Rebuild all projects"
echo " --pack Build nuget packages"
echo " --publish Publish build artifacts"
echo " --sign Sign build artifacts"
echo " --help Print help and exit"
echo ""
echo "Test actions:"
Expand Down Expand Up @@ -58,6 +59,7 @@ build=false
rebuild=false
pack=false
publish=false
sign=false
test_core_clr=false
test_compilercomponent_tests=false
test_benchmarks=false
Expand Down Expand Up @@ -129,6 +131,9 @@ while [[ $# > 0 ]]; do
--publish)
publish=true
;;
--sign)
sign=true
;;
--testcoreclr|--test|-t)
test_core_clr=true
;;
Expand Down Expand Up @@ -297,6 +302,7 @@ function BuildSolution {
/p:Rebuild=$rebuild \
/p:Pack=$pack \
/p:Publish=$publish \
/p:Sign=$sign \
/p:UseRoslynAnalyzers=$enable_analyzers \
/p:ContinuousIntegrationBuild=$ci \
/p:QuietRestore=$quiet_restore \
Expand Down