From 82269f135125396cb8d062818ec457266ef5e3a7 Mon Sep 17 00:00:00 2001 From: Michael Vines Date: Mon, 15 Mar 2021 20:31:29 -0700 Subject: [PATCH] Build full SPL in CI --- scripts/build-downstream-projects.sh | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/scripts/build-downstream-projects.sh b/scripts/build-downstream-projects.sh index 84c9f5a91..f3a4117b6 100755 --- a/scripts/build-downstream-projects.sh +++ b/scripts/build-downstream-projects.sh @@ -67,15 +67,8 @@ spl() { ./patch.crates-io.sh "$solana_dir" $cargo build - - # Generic `cargo test`/`cargo test-bpf` disabled due to BPF VM interface changes between Solana 1.4 - # and 1.5... - #$cargo test - #$cargo_test_bpf - - $cargo_test_bpf --manifest-path token/program/Cargo.toml - $cargo_test_bpf --manifest-path associated-token-account/program/Cargo.toml - $cargo_test_bpf --manifest-path feature-proposal/program/Cargo.toml + $cargo test + $cargo_test_bpf ) }