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
|
|
|
|
|
|
|
if [[ "$BUILDARCH" == "ia32" ]]; then
|
|
|
|
export npm_config_arch=ia32
|
|
|
|
fi
|
|
|
|
|
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-10-04 18:05:05 -04:00
|
|
|
if [[ "$TRAVIS_OS_NAME" != "osx" ]]; 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
|
2018-10-04 18:05:05 -04:00
|
|
|
fi
|
|
|
|
|
|
|
|
if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
|
|
|
|
npm run gulp vscode-darwin-min
|
|
|
|
elif [[ "$BUILDARCH" == "ia32" ]]; then
|
|
|
|
npm run gulp vscode-linux-ia32-min
|
|
|
|
npm run gulp vscode-linux-ia32-build-deb
|
|
|
|
npm run gulp vscode-linux-ia32-build-rpm
|
|
|
|
unset npm_config_arch
|
2018-10-10 11:20:56 -04:00
|
|
|
elif [[ "$BUILDARCH" == "arm64" ]]; then
|
|
|
|
npm run gulp vscode-linux-arm64-min
|
|
|
|
npm run gulp vscode-linux-arm64-build-deb
|
|
|
|
# npm run gulp vscode-linux-arm64-build-rpm
|
2018-10-04 18:05:05 -04:00
|
|
|
else
|
|
|
|
npm run gulp vscode-linux-x64-min
|
|
|
|
npm run gulp vscode-linux-x64-build-deb
|
|
|
|
npm run gulp vscode-linux-x64-build-rpm
|
2018-08-13 14:24:40 -04:00
|
|
|
fi
|
2018-10-10 11:20:56 -04:00
|
|
|
fi
|