2020-03-26 05:08:42 +07:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
|
|
|
2020-04-30 18:52:54 +07:00
|
|
|
# Makes sure the release works.
|
|
|
|
# This is to make sure we don't have Node version errors or any other
|
|
|
|
# compilation-related errors.
|
|
|
|
main() {
|
|
|
|
cd "$(dirname "${0}")/../.."
|
2020-03-26 05:08:42 +07:00
|
|
|
|
2020-05-08 11:34:20 +07:00
|
|
|
local EXTENSIONS_DIR
|
|
|
|
EXTENSIONS_DIR="$(mktemp -d)"
|
|
|
|
|
2020-05-28 03:39:17 +07:00
|
|
|
echo "Testing standalone release."
|
2020-05-08 11:34:20 +07:00
|
|
|
|
2020-05-28 03:39:17 +07:00
|
|
|
./release-standalone/bin/code-server --extensions-dir "$EXTENSIONS_DIR" --install-extension ms-python.python
|
2020-05-08 11:34:20 +07:00
|
|
|
local installed_extensions
|
2020-05-28 03:39:17 +07:00
|
|
|
installed_extensions="$(./release-standalone/bin/code-server --extensions-dir "$EXTENSIONS_DIR" --list-extensions 2>&1)"
|
2020-06-03 23:07:42 +07:00
|
|
|
if [[ $installed_extensions != "info Using config file ~/.config/code-server/config.yaml
|
2020-06-03 22:41:13 +07:00
|
|
|
ms-python.python" ]]; then
|
2020-05-08 11:34:20 +07:00
|
|
|
echo "Unexpected output from listing extensions:"
|
|
|
|
echo "$installed_extensions"
|
2020-03-26 05:08:42 +07:00
|
|
|
exit 1
|
|
|
|
fi
|
2020-04-30 18:52:54 +07:00
|
|
|
|
2020-05-28 03:39:17 +07:00
|
|
|
echo "Standalone release works correctly."
|
2020-03-26 05:08:42 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
main "$@"
|