From c6d74b6dbc6bb2822b9a0c19b44dc098f2e0abb1 Mon Sep 17 00:00:00 2001 From: Siddharth Suresh Date: Wed, 6 Nov 2024 15:10:55 -0800 Subject: [PATCH] Update latest core to v22.0.0 --- .github/workflows/build-latest.yml | 24 ++++++++++++------------ Makefile | 12 ++++++------ 2 files changed, 18 insertions(+), 18 deletions(-) diff --git a/.github/workflows/build-latest.yml b/.github/workflows/build-latest.yml index 5e0dc1bc..f249248d 100644 --- a/.github/workflows/build-latest.yml +++ b/.github/workflows/build-latest.yml @@ -32,12 +32,12 @@ jobs: sha: ${{ inputs.sha }} arch: amd64 tag: ${{ inputs.tag-prefix }}latest-amd64 - protocol_version_default: 21 - xdr_ref: v21.1.0 - core_ref: v21.3.1 - horizon_ref: horizon-v2.32.0 - soroban_rpc_ref: v21.5.1 - friendbot_ref: 31fc8f4236388f12fc609228b7a7f5494867a1f9 + protocol_version_default: 22 + xdr_ref: v22.0.0 + core_ref: v22.0.0 + horizon_ref: horizon-v22.0.0-rc2 + soroban_rpc_ref: v22.0.0-rc3 + friendbot_ref: horizon-v22.0.0-rc2 test_matrix: | { "network": ["pubnet", "local"], @@ -56,12 +56,12 @@ jobs: sha: ${{ inputs.sha }} arch: arm64 tag: ${{ inputs.tag-prefix }}latest-arm64 - protocol_version_default: 21 - xdr_ref: v21.1.0 - core_ref: v21.3.1 - horizon_ref: horizon-v2.32.0 - soroban_rpc_ref: v21.5.1 - friendbot_ref: 31fc8f4236388f12fc609228b7a7f5494867a1f9 + protocol_version_default: 22 + xdr_ref: v22.0.0 + core_ref: v22.0.0 + horizon_ref: horizon-v22.0.0-rc2 + soroban_rpc_ref: v22.0.0-rc3 + friendbot_ref: horizon-v22.0.0-rc2 test_matrix: | { "network": ["pubnet", "local"], diff --git a/Makefile b/Makefile index 3cfede2a..5fc156f0 100644 --- a/Makefile +++ b/Makefile @@ -23,12 +23,12 @@ console: build-latest: $(MAKE) build TAG=latest \ - PROTOCOL_VERSION_DEFAULT=21 \ - XDR_REF=v21.1.0 \ - CORE_REF=v21.3.1 \ - HORIZON_REF=horizon-v2.32.0 \ - SOROBAN_RPC_REF=v21.5.1 \ - FRIENDBOT_REF=31fc8f4236388f12fc609228b7a7f5494867a1f9 + PROTOCOL_VERSION_DEFAULT=22 \ + XDR_REF=v22.0.0 \ + CORE_REF=v22.0.0 \ + HORIZON_REF=horizon-v22.0.0-rc2 \ + SOROBAN_RPC_REF=v22.0.0-rc3 \ + FRIENDBOT_REF=horizon-v22.0.0-rc2 build-testing: $(MAKE) build TAG=testing \