#!/bin/sh # Specifying minimum versions MIN_GIT=2.25.0 MIN_CARGO=1.51.0 echo_abort () { echo >&2 ' *************** *** ABORTED *** *************** ' } ensure() { if ! command -v $1 &> /dev/null then echo_abort echo "command '$1' could not be found." echo "please ensure it is installed." exit 1 fi } echo "Making pre-run checks" ensure npm ensure cargo ensure jq # TODO: DRY these if (echo min version $MIN_GIT; git --version) | sort -Vk3 | tail -1 | grep -q git then echo "git version 👌" else echo_abort echo "Upgrade to git $MIN_GIT or later." exit 1 fi if (echo min $MIN_CARGO; cargo --version) | sort -Vk2 | tail -1 | grep -q cargo then echo "cargo version 👌" else echo_abort echo "Upgrade to cargo $MIN_CARGO or later." exit 1 fi echo "Pre-run checks complete" # Stash uncommitted changes echo "Stashing changes not staged for commit" git stash push --keep-index abort() { echo_abort echo "An error occurred. Please review your code and try again" >&2 git stash pop exit 1 } trap 'abort' 0 set -e git update-index -q --refresh # Conditionally compile and update optics-core abis if ! git diff-index --quiet HEAD -- ./solidity/optics-core; then echo "+Updating core ABIs" cd ./solidity/optics-core npm run compile # add files in case linter modified them git add . cd ../.. else echo "+Skipping core ABI updates" fi # Conditionally compile and update optics-xapps abis if ! git diff-index --quiet HEAD -- ./solidity/optics-xapps; then echo "+Updating xapps ABIs" cd ./solidity/optics-xapps npm run compile # add files in case linter modified them git add . cd ../.. else echo "+Skipping xapps ABI updates" fi # Conditionally run Rust bins to output into vector JSON files if ! git diff-index --quiet HEAD -- ./rust/optics-core/src/lib.rs; then echo "+Running lib vector generation" cd ./rust/optics-core echo '+cargo run --bin lib_test_output --features output' cargo run --bin lib_test_output --features output cd ../.. else echo "+Skipping lib vector generation" fi # Conditionally run Rust bins to output into vector JSON files if ! git diff-index --quiet HEAD -- ./rust/optics-core/src/utils.rs; then echo "+Running utils vector generation" cd ./rust/optics-core echo '+cargo run --bin utils_test_output --features output' cargo run --bin utils_test_output --features output cd ../.. else echo "+Skipping utils vector generation" fi # Run rust tests, clippy, and formatting if ! git diff-index --quiet HEAD -- ./rust; then echo "+Running rust tests" cd ./rust echo '+cargo fmt -- --check' cargo fmt -- --check echo '+cargo clippy -- -D warnings' cargo clippy -- -D warnings echo '+cargo test -- -q' cargo test -- -q cd .. else echo "+Skipping rust tests" fi # Run solidity/optics-core tests and lint if ! git diff-index --quiet HEAD -- ./solidity/optics-core ./vectors; then echo "+Running optics core tests" cd ./solidity/optics-core npm run lint npm test cd ../.. else echo "+Skipping optics core tests" fi # Run solidity/optics-xapps tests and lint if ! git diff-index --quiet HEAD -- ./solidity/optics-xapps; then echo "+Running optics-xapps tests" cd ./solidity/optics-xapps npm run lint npm test cd ../.. else echo "+Skipping optics-xapps tests" fi # Git add abis if updated if ! git diff-index --quiet HEAD -- ./rust/optics-ethereum/abis/; then echo '+git add ./rust/optics-ethereum/abis/*' git add ./rust/optics-ethereum/abis/* else echo "+Skipping git add ABIs" fi # Format and git add JSON files if updated if ! git diff-index --quiet HEAD -- ./vectors; then for file in vectors/*.json; do temp=$(mktemp) jq . "$file" > "$temp" mv -f "$temp" "$file" done echo '+git add ./vectors/*' git add ./vectors/* else echo "+Skipping git add vectors" fi trap : 0 echo >&2 ' ************ *** DONE *** ************ ' git stash pop -q