Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Add --sign switch on non-windows platforms #75491

Merged
merged 2 commits into from
Oct 14, 2024
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 @@ -21,6 +21,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 @@ restore=false
build=false
rebuild=false
pack=false
sign=false
publish=false
test_core_clr=false
test_mono=false
Expand Down Expand Up @@ -124,6 +126,9 @@ while [[ $# > 0 ]]; do
--publish)
publish=true
;;
--sign)
sign=true
;;
--testcoreclr|--test|-t)
test_core_clr=true
;;
Expand Down Expand Up @@ -300,6 +305,7 @@ function BuildSolution {
/p:Test=$test \
/p:Pack=$pack \
/p:Publish=$publish \
/p:Sign=$sign \
/p:RunAnalyzersDuringBuild=$run_analyzers \
/p:RestoreUseStaticGraphEvaluation=$restoreUseStaticGraphEvaluation \
/p:BootstrapBuildPath="$bootstrap_dir" \
Expand Down
Loading