From 412bb828ddb4a93745227ab5ad97c623d43f3a5f Mon Sep 17 00:00:00 2001 From: shawn Date: Thu, 7 Dec 2023 11:59:48 -0800 Subject: [PATCH] Update soroban-dev image to use 20.0.0 versions (#529) --- .github/workflows/build-soroban-dev.yml | 12 ++++++------ Makefile | 11 +++++------ 2 files changed, 11 insertions(+), 12 deletions(-) diff --git a/.github/workflows/build-soroban-dev.yml b/.github/workflows/build-soroban-dev.yml index db021f9f..dd464789 100644 --- a/.github/workflows/build-soroban-dev.yml +++ b/.github/workflows/build-soroban-dev.yml @@ -35,11 +35,11 @@ jobs: with: arch: amd64 tag: soroban-dev-amd64 - core_ref: v20.0.0-rc.2.2 + core_ref: v20.0.0 core_supports_enable_soroban_diagnostic_events: "true" - go_ref: horizon-v2.27.0-rc1 + go_ref: horizon-v2.27.0 xdr_ref: v20.0.1 - soroban_tools_ref: v20.0.0-rc4 + soroban_tools_ref: v20.0.0 test_matrix: | { "network": ["local"], @@ -54,12 +54,12 @@ jobs: with: arch: arm64 tag: soroban-dev-arm64 - core_ref: v20.0.0-rc.2.2 + core_ref: v20.0.0 core_supports_enable_soroban_diagnostic_events: "true" core_build_runner_type: ubuntu-latest-16-cores - go_ref: horizon-v2.27.0-rc1 + go_ref: horizon-v2.27.0 xdr_ref: v20.0.1 - soroban_tools_ref: v20.0.0-rc4 + soroban_tools_ref: v20.0.0 soroban_rpc_build_runner_type: ubuntu-latest-16-cores test_matrix: | { diff --git a/Makefile b/Makefile index bd7eccd8..801c65bd 100644 --- a/Makefile +++ b/Makefile @@ -27,16 +27,15 @@ build-latest: HORIZON_REF=horizon-v2.26.1 \ SOROBAN_RPC_REF=v0.4.0 -# The hashes below for CORE_REF and SOROBAN_RPC_REF are the refs for the v20.0.0 release +# The git ref below for SOROBAN_RPC_REF refers to soroban-tools/v20.0.0-rc4 tag build-testing: $(MAKE) build TAG=testing \ - XDR_REF=v20.0.1 \ - CORE_REF=6177299100b114aa108584053414371f38aebf53 \ + CORE_REF=v20.0.0-rc.2.2 \ CORE_SUPPORTS_ENABLE_SOROBAN_DIAGNOSTIC_EVENTS=true \ - HORIZON_REF=horizon-v2.27.0 \ - SOROBAN_RPC_REF=91a441ff9593377c11d7e8b26c4942e941d548bb + HORIZON_REF=horizon-v2.27.0-rc1 \ + SOROBAN_RPC_REF=bce5e56ba16ba977200b022c91f3eaf6282f47eb -# The hashes below for CORE_REF and SOROBAN_RPC_REF are the refs for the v20.0.0 release +# The git refs below for CORE_REF, SOROBAN_RPC_REF are refs to the v20.0.0 release tags. build-soroban-dev: $(MAKE) build TAG=soroban-dev \ XDR_REF=v20.0.1 \