fix: remove sanity_check.sh
All checks were successful
ci/woodpecker/push/proto Pipeline was successful
ci/woodpecker/push/node Pipeline was successful

This commit is contained in:
Strix 2023-11-05 20:53:00 +01:00
parent 8194499ce2
commit bd9ce9f01f
No known key found for this signature in database
GPG key ID: 49B2E37B8915B774

View file

@ -1,16 +0,0 @@
#!/bin/sh
cd domo_proto
if cargo test &> /dev/null; then
echo "proto build is ok; you're fiiiine"
else
echo "proto build failed; haaha, nothing works, it's not fine"
exit 1
fi
cd ../domo_node
if cargo build &> /dev/null; then
echo "node build is ok; totally fine"
else
echo "node build failed but imagine if it worked though, hahahahaha"
exit 1
fi