Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

solana: Add build, test, and lint Makefile targets to top-level dir #299

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 30 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,14 @@ build-evm-prod: clean-evm
gen-evm-bindings: build-evm-prod
npm ci && cd evm/ts && npm run generate

.PHONY: build-solana
build-solana:
cd solana; BPF_OUT_DIR="$(pwd)/target/deploy" cargo build-sbf

.PHONY: build-anchor
build-anchor:
cd solana; make _anchor-build

#######################
## TESTS

Expand All @@ -30,11 +38,32 @@ check-format:
fix-format:
cd evm && forge fmt

.PHONY: test
.PHONY: test-evm
test-evm:
cd evm && forge test -vvv


# Verify that the contracts do not include PUSH0 opcodes
test-push0:
cd evm && forge build --extra-output evm.bytecode.opcodes
@if grep -qr --include \*.json PUSH0 ./evm/out; then echo "Contract uses PUSH0 instruction" 1>&2; exit 1; else echo "PUSH0 Verification Succeeded"; fi

.PHONY: test-solana-unit
test-solana-unit:
cd solana; cargo build-sbf --features "mainnet"
cd solana; cargo test-sbf --features "mainnet"
cd solana; cargo test

.PHONY: test-anchor
test-anchor:
cd solana; make anchor-test

.PHONY: test-solana
test-solana: build-solana test-solana-unit build-anchor test-anchor


.PHONY: lint
lint-solana:
cargo fmt --check --all --manifest-path solana/Cargo.toml
cargo check --workspace --tests --manifest-path solana/Cargo.toml
cargo clippy --workspace --tests --manifest-path solana/Cargo.toml
Loading