@@ -157,7 +157,8 @@ steps:
157157 artifactName : crash-dump-macos
158158 targetPath : .build/crashes
159159 displayName : ' Publish Crash Reports'
160- condition : succeededOrFailed()
160+ continueOnError : true
161+ condition : failed()
161162
162163- script : |
163164 set -e
@@ -172,6 +173,7 @@ steps:
172173 security import $(agent.tempdirectory)/cert.p12 -k $(agent.tempdirectory)/buildagent.keychain -P "$(macos-developer-certificate-key)" -T /usr/bin/codesign
173174 security set-key-partition-list -S apple-tool:,apple:,codesign: -s -k pwd $(agent.tempdirectory)/buildagent.keychain
174175 codesign -s 99FM488X57 --deep --force --options runtime --entitlements build/azure-pipelines/darwin/entitlements.plist "$APP_ROOT"/*.app
176+ codesign -s 99FM488X57 --force --options runtime --entitlements build/azure-pipelines/darwin/helper-entitlements.plist "$APP_FRAMEWORK_PATH/$HELPER_APP_NAME Helper.app"
175177 codesign -s 99FM488X57 --force --options runtime --entitlements build/azure-pipelines/darwin/helper-gpu-entitlements.plist "$APP_FRAMEWORK_PATH/$HELPER_APP_NAME Helper (GPU).app"
176178 codesign -s 99FM488X57 --force --options runtime --entitlements build/azure-pipelines/darwin/helper-plugin-entitlements.plist "$APP_FRAMEWORK_PATH/$HELPER_APP_NAME Helper (Plugin).app"
177179 codesign -s 99FM488X57 --force --options runtime --entitlements build/azure-pipelines/darwin/helper-renderer-entitlements.plist "$APP_FRAMEWORK_PATH/$HELPER_APP_NAME Helper (Renderer).app"
@@ -241,6 +243,13 @@ steps:
241243 SessionTimeout : 60
242244 displayName : Notarization
243245
246+ - script : |
247+ set -e
248+ APP_ROOT=$(agent.builddirectory)/VSCode-darwin
249+ APP_NAME="`ls $APP_ROOT | head -n 1`"
250+ "$APP_ROOT/$APP_NAME/Contents/Resources/app/bin/code" --version
251+ displayName : Verify start after signing
252+
244253- script : |
245254 set -e
246255 VSCODE_MIXIN_PASSWORD="$(github-distro-mixin-password)" \
@@ -251,6 +260,11 @@ steps:
251260 ./build/azure-pipelines/darwin/publish.sh
252261 displayName : Publish
253262
263+ - script : |
264+ yarn gulp upload-vscode-configuration
265+ displayName : Upload configuration (for Bing settings search)
266+ continueOnError : true
267+
254268- task : ms.vss-governance-buildtask.governance-build-task-component-detection.ComponentGovernanceComponentDetection@0
255269 displayName : ' Component Detection'
256270 continueOnError : true
0 commit comments