code-server-2/ci/build/test-binary-release.sh

28 lines
774 B
Bash
Raw Normal View History

2020-03-25 22:08:42 +00:00
#!/usr/bin/env bash
set -euo pipefail
# 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-25 22:08:42 +00:00
local EXTENSIONS_DIR
EXTENSIONS_DIR="$(mktemp -d)"
echo "Testing binary release"
./release-binary/bin/code-server --extensions-dir "$EXTENSIONS_DIR" --install-extension ms-python.python
local installed_extensions
installed_extensions="$(./release-binary/bin/code-server --extensions-dir "$EXTENSIONS_DIR" --list-extensions 2>&1)"
if [[ $installed_extensions != "ms-python.python" ]]; then
echo "Unexpected output from listing extensions:"
echo "$installed_extensions"
2020-03-25 22:08:42 +00:00
exit 1
fi
echo "Binary release works correctly"
2020-03-25 22:08:42 +00:00
}
main "$@"