chore: ensure run_rpc_tests.sh uses up-to-date server binaries (#1174)

This commit is contained in:
Andrew Kent 2021-04-22 16:16:28 -07:00 committed by GitHub
parent 966b3431c1
commit 9995513098
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,6 +2,11 @@
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
pushd $DIR
cabal v2-build exe:cryptol-remote-api
cabal v2-build exe:cryptol-eval-server
pushd $DIR/python
NUM_FAILS=0
@ -45,6 +50,8 @@ else
fi
popd
popd
if [ $NUM_FAILS -eq 0 ]
then
echo "All RPC tests passed"