2018-08-13 11:14:15 -04:00
|
|
|
#!/bin/bash
|
|
|
|
|
2018-08-13 14:24:40 -04:00
|
|
|
if [[ "$SHOULD_BUILD" == "yes" ]]; then
|
|
|
|
cd vscode
|
|
|
|
yarn
|
|
|
|
mv product.json product.json.bak
|
|
|
|
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"})' > product.json
|
|
|
|
cat product.json
|
|
|
|
export NODE_ENV=production
|
2018-08-13 11:14:15 -04:00
|
|
|
|
2018-08-13 14:24:40 -04:00
|
|
|
if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
|
|
|
|
npx gulp vscode-darwin-min
|
|
|
|
else
|
|
|
|
npx gulp vscode-linux-x64-min
|
2018-08-15 11:59:54 -04:00
|
|
|
npx gulp vscode-linux-x64-build-deb
|
|
|
|
npx gulp vscode-linux-x64-build-rpm
|
2018-08-13 14:24:40 -04:00
|
|
|
fi
|
2018-08-13 11:14:15 -04:00
|
|
|
|
2018-08-13 14:24:40 -04:00
|
|
|
cd ..
|
|
|
|
fi
|