diff --git a/scripts/check_pyo3_link_script.sh b/scripts/check_pyo3_link_script.sh deleted file mode 100755 index 87143c7368..0000000000 --- a/scripts/check_pyo3_link_script.sh +++ /dev/null @@ -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