Skip to content

Commit

Permalink
Bump platform-tools version to v1.37 (#31017)
Browse files Browse the repository at this point in the history
  • Loading branch information
dmakarov authored Apr 1, 2023
1 parent 2cbd5d6 commit 8c860e9
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions programs/sbf/tests/programs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1516,7 +1516,7 @@ fn assert_instruction_count() {
programs.extend_from_slice(&[
("solana_sbf_rust_128bit", 1218),
("solana_sbf_rust_alloc", 5067),
("solana_sbf_rust_custom_heap", 422),
("solana_sbf_rust_custom_heap", 398),
("solana_sbf_rust_dep_crate", 2),
("solana_sbf_rust_external_spend", 288),
("solana_sbf_rust_iter", 1013),
Expand All @@ -1526,9 +1526,9 @@ fn assert_instruction_count() {
("solana_sbf_rust_noop", 275),
("solana_sbf_rust_param_passing", 146),
("solana_sbf_rust_rand", 378),
("solana_sbf_rust_sanity", 51814),
("solana_sbf_rust_sanity", 51931),
("solana_sbf_rust_secp256k1_recover", 91185),
("solana_sbf_rust_sha", 24075),
("solana_sbf_rust_sha", 24059),
]);
}

Expand Down
2 changes: 1 addition & 1 deletion sdk/bpf/scripts/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ if [[ ! -e criterion-$version.md || ! -e criterion ]]; then
fi

# Install Rust-BPF
version=v1.35
version=v1.37
if [[ ! -e bpf-tools-$version.md || ! -e bpf-tools ]]; then
(
set -e
Expand Down
2 changes: 1 addition & 1 deletion sdk/cargo-build-sbf/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -893,7 +893,7 @@ fn main() {

// The following line is scanned by CI configuration script to
// separate cargo caches according to the version of platform-tools.
let platform_tools_version = String::from("v1.36");
let platform_tools_version = String::from("v1.37");
let version = format!(
"{}\nplatform-tools {}",
crate_version!(),
Expand Down
2 changes: 1 addition & 1 deletion sdk/sbf/scripts/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ if [[ ! -e criterion-$version.md || ! -e criterion ]]; then
fi

# Install platform tools
version=v1.36
version=v1.37
if [[ ! -e platform-tools-$version.md || ! -e platform-tools ]]; then
(
set -e
Expand Down

0 comments on commit 8c860e9

Please sign in to comment.