prepare_vscode.sh 5.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. #!/bin/bash
  2. set -e
  3. if [[ "$CI_WINDOWS" == "True" ]]; then
  4. export npm_config_arch="$BUILDARCH"
  5. export npm_config_target_arch="$BUILDARCH"
  6. fi
  7. cp -rp src/* vscode/
  8. cd vscode || exit
  9. ../update_settings.sh
  10. # apply patches
  11. patch -u src/vs/platform/update/electron-main/updateService.win32.ts -i ../patches/update-cache-path.patch
  12. patch -u resources/linux/rpm/code.spec.template -i ../patches/no-replace-product-json.patch
  13. if [[ "$OS_NAME" == "osx" ]]; then
  14. CHILD_CONCURRENCY=1 yarn --frozen-lockfile --ignore-optional
  15. npm_config_argv='{"original":["--ignore-optional"]}' yarn postinstall
  16. else
  17. CHILD_CONCURRENCY=1 yarn --frozen-lockfile
  18. yarn postinstall
  19. fi
  20. mv product.json product.json.bak
  21. # set fields in product.json
  22. checksumFailMoreInfoUrl='setpath(["checksumFailMoreInfoUrl"]; "https://go.microsoft.com/fwlink/?LinkId=828886")'
  23. tipsAndTricksUrl='setpath(["tipsAndTricksUrl"]; "https://go.microsoft.com/fwlink/?linkid=852118")'
  24. twitterUrl='setpath(["twitterUrl"]; "https://go.microsoft.com/fwlink/?LinkID=533687")'
  25. requestFeatureUrl='setpath(["requestFeatureUrl"]; "https://go.microsoft.com/fwlink/?LinkID=533482")'
  26. documentationUrl='setpath(["documentationUrl"]; "https://go.microsoft.com/fwlink/?LinkID=533484#vscode")'
  27. introductoryVideosUrl='setpath(["introductoryVideosUrl"]; "https://go.microsoft.com/fwlink/?linkid=832146")'
  28. extensionAllowedBadgeProviders='setpath(["extensionAllowedBadgeProviders"]; ["api.bintray.com", "api.travis-ci.com", "api.travis-ci.org", "app.fossa.io", "badge.fury.io", "badge.waffle.io", "badgen.net", "badges.frapsoft.com", "badges.gitter.im", "badges.greenkeeper.io", "cdn.travis-ci.com", "cdn.travis-ci.org", "ci.appveyor.com", "circleci.com", "cla.opensource.microsoft.com", "codacy.com", "codeclimate.com", "codecov.io", "coveralls.io", "david-dm.org", "deepscan.io", "dev.azure.com", "flat.badgen.net", "gemnasium.com", "githost.io", "gitlab.com", "godoc.org", "goreportcard.com", "img.shields.io", "isitmaintained.com", "marketplace.visualstudio.com", "nodesecurity.io", "opencollective.com", "snyk.io", "travis-ci.com", "travis-ci.org", "visualstudio.com", "vsmarketplacebadge.apphb.com", "www.bithound.io", "www.versioneye.com"])'
  29. updateUrl='setpath(["updateUrl"]; "https://vscodium.now.sh")'
  30. releaseNotesUrl='setpath(["releaseNotesUrl"]; "https://go.microsoft.com/fwlink/?LinkID=533483#vscode")'
  31. keyboardShortcutsUrlMac='setpath(["keyboardShortcutsUrlMac"]; "https://go.microsoft.com/fwlink/?linkid=832143")'
  32. keyboardShortcutsUrlLinux='setpath(["keyboardShortcutsUrlLinux"]; "https://go.microsoft.com/fwlink/?linkid=832144")'
  33. keyboardShortcutsUrlWin='setpath(["keyboardShortcutsUrlWin"]; "https://go.microsoft.com/fwlink/?linkid=832145")'
  34. quality='setpath(["quality"]; "stable")'
  35. extensionsGallery='setpath(["extensionsGallery"]; {"serviceUrl": "https://open-vsx.org/vscode/gallery", "itemUrl": "https://open-vsx.org/vscode/item"})'
  36. linkProtectionTrustedDomains='setpath(["linkProtectionTrustedDomains"]; ["https://open-vsx.org"])'
  37. nameShort='setpath(["nameShort"]; "VSCodium")'
  38. nameLong='setpath(["nameLong"]; "VSCodium")'
  39. linuxIconName='setpath(["linuxIconName"]; "vscodium")'
  40. applicationName='setpath(["applicationName"]; "codium")'
  41. win32MutexName='setpath(["win32MutexName"]; "vscodium")'
  42. win32DirName='setpath(["win32DirName"]; "VSCodium")'
  43. win32NameVersion='setpath(["win32NameVersion"]; "VSCodium")'
  44. win32RegValueName='setpath(["win32RegValueName"]; "VSCodium")'
  45. win32AppUserModelId='setpath(["win32AppUserModelId"]; "Microsoft.VSCodium")'
  46. win32ShellNameShort='setpath(["win32ShellNameShort"]; "VSCodium")'
  47. win32x64UserAppId='setpath (["win32x64UserAppId"]; "{{2E1F05D1-C245-4562-81EE-28188DB6FD17}")'
  48. urlProtocol='setpath(["urlProtocol"]; "vscodium")'
  49. extensionAllowedProposedApi='setpath(["extensionAllowedProposedApi"]; getpath(["extensionAllowedProposedApi"]) + ["ms-vsliveshare.vsliveshare", "ms-vscode-remote.remote-ssh"])'
  50. serverDataFolderName='setpath(["serverDataFolderName"]; ".vscode-server-oss")'
  51. product_json_changes="${checksumFailMoreInfoUrl} | ${tipsAndTricksUrl} | ${twitterUrl} | ${requestFeatureUrl} | ${documentationUrl} | ${introductoryVideosUrl} | ${extensionAllowedBadgeProviders} | ${updateUrl} | ${releaseNotesUrl} | ${keyboardShortcutsUrlMac} | ${keyboardShortcutsUrlLinux} | ${keyboardShortcutsUrlWin} | ${quality} | ${extensionsGallery} | ${linkProtectionTrustedDomains} | ${nameShort} | ${nameLong} | ${linuxIconName} | ${applicationName} | ${win32MutexName} | ${win32DirName} | ${win32NameVersion} | ${win32RegValueName} | ${win32AppUserModelId} | ${win32ShellNameShort} | ${win32x64UserAppId} | ${urlProtocol} | ${extensionAllowedProposedApi} | ${serverDataFolderName}"
  52. cat product.json.bak | jq "${product_json_changes}" > product.json
  53. cat product.json
  54. ../undo_telemetry.sh
  55. if [[ "$OS_NAME" == "linux" ]]; then
  56. # microsoft adds their apt repo to sources
  57. # unless the app name is code-oss
  58. # as we are renaming the application to vscodium
  59. # we need to edit a line in the post install template
  60. sed -i "s/code-oss/codium/" resources/linux/debian/postinst.template
  61. fi
  62. cd ..