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

[automated] bump solana image to v2.0.20 #983

Merged
merged 1 commit into from
Dec 17, 2024
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion integration-tests/testconfig/default.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ inside_k8 = false
network = "localnet"
user = "default"
stateful_db = false
devnet_image = "anzaxyz/agave:v2.0.18"
devnet_image = "anzaxyz/agave:v2.0.20"

[OCR2]
node_count = 6
Expand Down
2 changes: 1 addition & 1 deletion scripts/install-solana-ci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@

set -euxo pipefail

sh -c "$(curl -sSfL https://release.anza.xyz/v2.0.18/install)"
sh -c "$(curl -sSfL https://release.anza.xyz/v2.0.20/install)"
echo "PATH=$HOME/.local/share/solana/install/active_release/bin:$PATH" >> $GITHUB_ENV
2 changes: 1 addition & 1 deletion scripts/setup-localnet/localnet.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ cpu_struct="linux";
# Clean up first
bash "$(dirname -- "$0";)/localnet.down.sh"

container_version=v2.0.18
container_version=v2.0.20
container_name="chainlink-solana.test-validator"

echo "Starting $container_name@$container_version"
Expand Down
6 changes: 3 additions & 3 deletions solana.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

# Solana integration
let
version = "v2.0.18";
version = "v2.0.20";
getBinDerivation =
{
name,
Expand Down Expand Up @@ -37,14 +37,14 @@ let
name = "solana-cli-x86_64-linux";
filename = "solana-release-x86_64-unknown-linux-gnu.tar.bz2";
### BEGIN_LINUX_SHA256 ###
sha256 = "sha256-3FW6IMZeDtyU4GTsRIwT9BFLNzLPEuP+oiQdur7P13s=";
sha256 = "sha256-6w624hoeRZM/HaM43I1eUeyf6oTbRfrVcb85m0Oww4s=";
### END_LINUX_SHA256 ###
};
aarch64-apple-darwin = getBinDerivation {
name = "solana-cli-aarch64-apple-darwin";
filename = "solana-release-aarch64-apple-darwin.tar.bz2";
### BEGIN_DARWIN_SHA256 ###
sha256 = "sha256-6VjycYU0NU0evXoqtGAZMYGHQEKijofnFQnBJNVsb6Q=";
sha256 = "sha256-9jJtes7CHb5XR+Zklh3asDiyC+intzzDd6Bb69rhHRk=";
### END_DARWIN_SHA256 ###
};
};
Expand Down
Loading