Skip to content

Commit e44ae1d

Browse files
authored
Add -sign to build.sh (#18024)
1 parent fa60e8c commit e44ae1d

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

Diff for: eng/build.sh

+6
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ usage()
2020
echo " --rebuild Rebuild all projects"
2121
echo " --pack Build nuget packages"
2222
echo " --publish Publish build artifacts"
23+
echo " --sign Sign build artifacts"
2324
echo " --help Print help and exit"
2425
echo ""
2526
echo "Test actions:"
@@ -58,6 +59,7 @@ build=false
5859
rebuild=false
5960
pack=false
6061
publish=false
62+
sign=false
6163
test_core_clr=false
6264
test_compilercomponent_tests=false
6365
test_benchmarks=false
@@ -129,6 +131,9 @@ while [[ $# > 0 ]]; do
129131
--publish)
130132
publish=true
131133
;;
134+
--sign)
135+
sign=true
136+
;;
132137
--testcoreclr|--test|-t)
133138
test_core_clr=true
134139
;;
@@ -297,6 +302,7 @@ function BuildSolution {
297302
/p:Rebuild=$rebuild \
298303
/p:Pack=$pack \
299304
/p:Publish=$publish \
305+
/p:Sign=$sign \
300306
/p:UseRoslynAnalyzers=$enable_analyzers \
301307
/p:ContinuousIntegrationBuild=$ci \
302308
/p:QuietRestore=$quiet_restore \

0 commit comments

Comments
 (0)