Skip to content

Commit

Permalink
installing 1.70.0 toolchain and running tests
Browse files Browse the repository at this point in the history
  • Loading branch information
godmodegalactus committed Sep 11, 2023
1 parent 76e3143 commit 02131f9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions justfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
fuzz-toolchain := if `arch` == "arm64" { "+nightly-x86_64-apple-darwin" } else { "+nightly" }
test-toolchain := "+1.68.0"

build:
cargo build-sbf --features enable-gpl
Expand All @@ -11,7 +10,8 @@ test TEST_NAME:
cargo test-sbf --features enable-gpl -- {{ TEST_NAME }}

test-all:
(cd ./programs/openbook-v2 && RUST_LOG=ERROR cargo {{ test-toolchain }} test-sbf --features enable-gpl)
rustup install 1.70.0
(cd ./programs/openbook-v2 && RUST_LOG=ERROR cargo +1.70.0 test-sbf --features enable-gpl)

test-dev:
(find programs) | entr -s 'just test-all'
Expand Down

0 comments on commit 02131f9

Please sign in to comment.