From 8f002794f667424da08b680666531d0385b89835 Mon Sep 17 00:00:00 2001 From: Jon C Date: Wed, 30 Oct 2024 10:52:21 +0100 Subject: [PATCH] CI: Pin downstrem SPL job to v2.0 branch ##### Problem SPL is about to update to use the v2.1 crates, which will cause the downstream jobs to fail for branch v2.0. #### Summary of changes Checkout the `v2.0` branch from the SPL repo for the downstream tests. --- .github/scripts/downstream-project-spl-common.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/scripts/downstream-project-spl-common.sh b/.github/scripts/downstream-project-spl-common.sh index 779af8f2568110..8fdb691520ad08 100644 --- a/.github/scripts/downstream-project-spl-common.sh +++ b/.github/scripts/downstream-project-spl-common.sh @@ -8,7 +8,7 @@ source "$here"/../../ci/downstream-projects/common.sh set -x rm -rf spl -git clone https://github.com/solana-labs/solana-program-library.git spl +git clone https://github.com/solana-labs/solana-program-library.git spl -b v2.0 # copy toolchain file to use solana's rust version cp "$SOLANA_DIR"/rust-toolchain.toml spl/