Skip to content

Commit

Permalink
Add -sign to build.sh (dotnet#18024)
Browse files Browse the repository at this point in the history
  • Loading branch information
ellahathaway authored Nov 19, 2024
1 parent fa60e8c commit e44ae1d
Showing 1 changed file with 6 additions and 0 deletions.
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

0 comments on commit e44ae1d

Please sign in to comment.