feat: remove check script

This commit is contained in:
Discord9
2023-12-06 16:40:58 +08:00
parent 8fb40c66a4
commit ee0a3972fc

View File

@@ -1,11 +0,0 @@
#!/bin/bash
# This script is only used in CI to check if the pyo3 backend is linked correctly
echo $(pwd)
if [[ $FEATURES == *pyo3_backend* ]]; then
cp target/release/greptime scripts
if yes | ./scripts/greptime.sh --version &> /dev/null; then
exit 0
else
exit 1
fi
fi