2016-07-11 18:30:58 +02:00
|
|
|
#!/bin/sh
|
|
|
|
FILE=./.git/hooks/pre-push
|
|
|
|
|
|
|
|
echo "#!/bin/sh\n" > $FILE
|
|
|
|
# Exit on any error
|
|
|
|
echo "set -e" >> $FILE
|
|
|
|
# Run release build
|
|
|
|
echo "cargo build --features dev" >> $FILE
|
|
|
|
# Build tests
|
2017-08-01 12:32:34 +02:00
|
|
|
echo "cargo test --no-run --features dev --all --exclude parity-ipfs-api --exclude evmjit" >> $FILE
|
2016-07-11 18:30:58 +02:00
|
|
|
echo "" >> $FILE
|
|
|
|
chmod +x $FILE
|