code-server-2/scripts/test.sh

20 lines
369 B
Bash
Raw Normal View History

2020-01-15 18:05:27 +00:00
#!/usr/bin/env sh
# test.sh -- Simple test for CI.
# We'll have more involved tests eventually. This just ensures the binary has
# been built and runs.
set -eu
main() {
cd "$(dirname "$0")/.."
version=$(./binaries/code-server* --version | head -1)
echo "Got '$version' for the version"
case $version in
2020-01-17 00:09:19 +00:00
*-vsc1.41.1) exit 0 ;;
2020-01-15 18:05:27 +00:00
*) exit 1 ;;
esac
}
main "$@"