2018-08-13 11:14:15 -04:00
|
|
|
#!/bin/bash
|
2018-08-13 14:24:40 -04:00
|
|
|
if [[ "$SHOULD_BUILD" == "yes" ]]; then
|
2018-10-11 09:02:11 -04:00
|
|
|
cp -rp src/* vscode/
|
2018-08-13 14:24:40 -04:00
|
|
|
cd vscode
|
2018-10-04 18:05:05 -04:00
|
|
|
|
2019-04-05 13:13:11 -04:00
|
|
|
export npm_config_arch="$BUILDARCH"
|
|
|
|
export npm_config_target_arch="$BUILDARCH"
|
2018-10-19 11:38:43 -04:00
|
|
|
../update_settings.sh
|
|
|
|
|
2018-08-13 14:24:40 -04:00
|
|
|
yarn
|
|
|
|
mv product.json product.json.bak
|
2018-09-10 16:18:00 -04:00
|
|
|
cat product.json.bak | jq 'setpath(["extensionsGallery"]; {"serviceUrl": "https://marketplace.visualstudio.com/_apis/public/gallery", "cacheUrl": "https://vscode.blob.core.windows.net/gallery/index", "itemUrl": "https://marketplace.visualstudio.com/items"}) | setpath(["nameShort"]; "VSCodium") | setpath(["nameLong"]; "VSCodium") | setpath(["applicationName"]; "vscodium") | setpath(["win32MutexName"]; "vscodium") | setpath(["win32DirName"]; "VSCodium") | setpath(["win32NameVersion"]; "VSCodium") | setpath(["win32RegValueName"]; "VSCodium") | setpath(["win32AppUserModelId"]; "Microsoft.VSCodium") | setpath(["win32ShellNameShort"]; "V&SCodium") | setpath(["urlProtocol"]; "vscodium")' > product.json
|
2018-08-13 14:24:40 -04:00
|
|
|
cat product.json
|
2018-10-05 09:43:05 -04:00
|
|
|
../undo_telemetry.sh
|
|
|
|
|
2018-08-13 14:24:40 -04:00
|
|
|
export NODE_ENV=production
|
2018-08-13 11:14:15 -04:00
|
|
|
|
2018-11-27 09:19:34 -05:00
|
|
|
if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
|
2018-09-21 20:26:52 -04:00
|
|
|
# microsoft adds their apt repo to sources
|
|
|
|
# unless the app name is code-oss
|
|
|
|
# as we are renaming the application to vscodium
|
|
|
|
# we need to edit a line in the post install template
|
|
|
|
sed -i "s/code-oss/vscodium/" resources/linux/debian/postinst.template
|
2019-04-05 13:13:11 -04:00
|
|
|
fi
|
2018-10-04 18:05:05 -04:00
|
|
|
|
|
|
|
if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
|
2019-04-05 13:13:11 -04:00
|
|
|
npm run gulp -- "vscode-darwin-min"
|
2018-11-27 09:19:34 -05:00
|
|
|
elif [[ "$CI_WINDOWS" == "True" ]]; then
|
2019-03-18 21:24:43 -04:00
|
|
|
cp LICENSE.txt LICENSE.rtf # windows build expects rtf license
|
2019-04-05 13:13:11 -04:00
|
|
|
npm run gulp -- "vscode-win32-${BUILDARCH}-min"
|
|
|
|
npm run gulp -- "vscode-win32-${BUILDARCH}-inno-updater"
|
|
|
|
npm run gulp -- "vscode-win32-${BUILDARCH}-system-setup"
|
|
|
|
npm run gulp -- "vscode-win32-${BUILDARCH}-user-setup"
|
|
|
|
npm run gulp -- "vscode-win32-${BUILDARCH}-archive"
|
|
|
|
else # linux
|
|
|
|
npm run gulp -- "vscode-linux-${BUILDARCH}-min"
|
|
|
|
npm run gulp -- "vscode-linux-${BUILDARCH}-build-deb"
|
|
|
|
npm run gulp -- "vscode-linux-${BUILDARCH}-build-rpm"
|
2018-11-27 09:19:34 -05:00
|
|
|
fi
|
|
|
|
|
|
|
|
cd ..
|
2018-10-10 11:20:56 -04:00
|
|
|
fi
|