ea6b0ec164
* removed not working evmjit, closes #8192 closes #6205 * removed evmjit from build scripts * fixed parity compile error * removed evmjit cli options * fixed invalid test config files
13 lines
300 B
Bash
Executable File
13 lines
300 B
Bash
Executable File
#!/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
|
|
echo "cargo test --no-run --features dev --all --exclude parity-ipfs-api" >> $FILE
|
|
echo "" >> $FILE
|
|
chmod +x $FILE
|