From 600cfbb10b2b7af033a9e930d09878c2e4f0844a Mon Sep 17 00:00:00 2001 From: "mergify[bot]" <37929162+mergify[bot]@users.noreply.github.com> Date: Sat, 17 Aug 2024 12:07:56 -0400 Subject: [PATCH] v2.0: CI: Disable downstream anchor builds (backport of #2629) (#2647) * CI: Disable downstream anchor builds (#2629) #### Problem With https://github.com/solana-labs/solana-program-library/pull/7148, spl-token-2022 has moved from using solana-zk-token-sdk to solana-zk-sdk, which is a major breaking change. Certain agave and anchor crates are depending on the re-export solana-zk-token-sdk in spl-token-2022, which is no longer present. This change is causing the downstream Anchor job to fail, since the patched version of spl-token-2022 is no longer compatible. #### Summary of changes Until new major versions of the SPL crates are available used by the Agave monorepo, disable the downstream anchor job. (cherry picked from commit 3b9e7a3ca53e73f066be058edae0ccaffda852f3) # Conflicts: # .github/workflows/downstream-project-anchor.yml * Fix merge conflicts --------- Co-authored-by: Jon C --- .github/workflows/downstream-project-anchor.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/downstream-project-anchor.yml b/.github/workflows/downstream-project-anchor.yml index 52dcbdc5a23009..1ac129a3f6e934 100644 --- a/.github/workflows/downstream-project-anchor.yml +++ b/.github/workflows/downstream-project-anchor.yml @@ -44,6 +44,7 @@ jobs: strategy: matrix: version: ["v0.29.0", "v0.30.0"] + if: false # Re-enable once new major versions for spl-token-2022 and spl-pod are out steps: - uses: actions/checkout@v4