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

21 lines
460 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 output
output=$(./release-static/bin/code-server --list-extensions 2>&1)
2020-03-25 22:08:42 +00:00
if echo "$output" | grep 'was compiled against a different Node.js version'; then
echo "$output"
exit 1
fi
echo "Build ran successfully"
2020-03-25 22:08:42 +00:00
}
main "$@"