mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-01-05 21:02:58 +00:00
12 lines
301 B
Bash
Executable File
12 lines
301 B
Bash
Executable File
#!/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
|