From ca3067788ecd742e643e082ab3858eff50690f57 Mon Sep 17 00:00:00 2001 From: Shawn Reuland Date: Wed, 13 Sep 2023 11:11:05 -0700 Subject: [PATCH 1/5] update soroban-dev image to use preview 11 versions --- .github/workflows/build-soroban-dev.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build-soroban-dev.yml b/.github/workflows/build-soroban-dev.yml index 34e3052a..bf6a24d2 100644 --- a/.github/workflows/build-soroban-dev.yml +++ b/.github/workflows/build-soroban-dev.yml @@ -34,10 +34,10 @@ jobs: with: arch: amd64 tag: soroban-dev-amd64 - core_ref: soroban-preview-10-July20 + core_ref: soroban-preview-11-Sep13 core_configure_flags: --disable-tests --enable-next-protocol-version-unsafe-for-production - go_ref: soroban-v0.0.9.1 - soroban_tools_ref: v0.9.2 + go_ref: soroban-v0.10.0 + soroban_tools_ref: v0.10.0 test_matrix: | { "network": ["standalone"], @@ -52,11 +52,11 @@ jobs: with: arch: arm64 tag: soroban-dev-arm64 - core_ref: soroban-preview-10-July20 + core_ref: soroban-preview-11-Sep13 core_configure_flags: --disable-tests --enable-next-protocol-version-unsafe-for-production core_build_runner_type: ubuntu-latest-16-cores - go_ref: soroban-v0.0.9.1 - soroban_tools_ref: v0.9.2 + go_ref: soroban-v0.10.0 + soroban_tools_ref: v0.10.0 soroban_rpc_build_runner_type: ubuntu-latest-16-cores test_matrix: | { From 672f07bec8dd28264b08af3d0d934cd4ee5c352d Mon Sep 17 00:00:00 2001 From: Shawn Reuland Date: Wed, 13 Sep 2023 14:02:47 -0700 Subject: [PATCH 2/5] include version updates in makefile build also --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 76ad55b6..16ad5b82 100644 --- a/Makefile +++ b/Makefile @@ -27,10 +27,10 @@ build-testing: build-soroban-dev: $(MAKE) build TAG=soroban-dev \ - CORE_REF=soroban-preview-10-July20 \ + CORE_REF=soroban-preview-11-Sep13 \ CORE_CONFIGURE_FLAGS='--disable-tests --enable-next-protocol-version-unsafe-for-production' \ - HORIZON_REF=soroban-v0.0.9.1 \ - SOROBAN_RPC_REF=v0.9.2 + HORIZON_REF=soroban-v0.10.0 \ + SOROBAN_RPC_REF=v0.10.0 build: $(MAKE) -j 4 build-deps From 68094b9a68dcf7353052e557541621008a5ecc1c Mon Sep 17 00:00:00 2001 From: Shawn Reuland Date: Thu, 14 Sep 2023 14:26:43 -0700 Subject: [PATCH 3/5] updated soroban source rel tags --- .github/workflows/build-soroban-dev.yml | 16 ++++++++-------- Makefile | 8 ++++---- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/build-soroban-dev.yml b/.github/workflows/build-soroban-dev.yml index bf6a24d2..825a8960 100644 --- a/.github/workflows/build-soroban-dev.yml +++ b/.github/workflows/build-soroban-dev.yml @@ -34,10 +34,10 @@ jobs: with: arch: amd64 tag: soroban-dev-amd64 - core_ref: soroban-preview-11-Sep13 - core_configure_flags: --disable-tests --enable-next-protocol-version-unsafe-for-production - go_ref: soroban-v0.10.0 - soroban_tools_ref: v0.10.0 + core_ref: v20.0.0rc1 + core_configure_flags: --disable-tests + go_ref: soroban-v1.0.0-rc + soroban_tools_ref: v20.0.0-rc.1 test_matrix: | { "network": ["standalone"], @@ -52,11 +52,11 @@ jobs: with: arch: arm64 tag: soroban-dev-arm64 - core_ref: soroban-preview-11-Sep13 - core_configure_flags: --disable-tests --enable-next-protocol-version-unsafe-for-production + core_ref: v20.0.0rc1 + core_configure_flags: --disable-tests core_build_runner_type: ubuntu-latest-16-cores - go_ref: soroban-v0.10.0 - soroban_tools_ref: v0.10.0 + go_ref: soroban-v1.0.0-rc + soroban_tools_ref: v20.0.0-rc.1 soroban_rpc_build_runner_type: ubuntu-latest-16-cores test_matrix: | { diff --git a/Makefile b/Makefile index 16ad5b82..d772b43a 100644 --- a/Makefile +++ b/Makefile @@ -27,10 +27,10 @@ build-testing: build-soroban-dev: $(MAKE) build TAG=soroban-dev \ - CORE_REF=soroban-preview-11-Sep13 \ - CORE_CONFIGURE_FLAGS='--disable-tests --enable-next-protocol-version-unsafe-for-production' \ - HORIZON_REF=soroban-v0.10.0 \ - SOROBAN_RPC_REF=v0.10.0 + CORE_REF=v20.0.0rc1 \ + CORE_CONFIGURE_FLAGS='--disable-tests' \ + HORIZON_REF=soroban-v1.0.0-rc \ + SOROBAN_RPC_REF=v20.0.0-rc.1 build: $(MAKE) -j 4 build-deps From 2061a8656344d505883ced55522c6070db7dfb63 Mon Sep 17 00:00:00 2001 From: Shawn Reuland Date: Thu, 14 Sep 2023 14:55:20 -0700 Subject: [PATCH 4/5] tools tag update --- .github/workflows/build-soroban-dev.yml | 4 ++-- Makefile | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-soroban-dev.yml b/.github/workflows/build-soroban-dev.yml index 825a8960..98b7f3d7 100644 --- a/.github/workflows/build-soroban-dev.yml +++ b/.github/workflows/build-soroban-dev.yml @@ -37,7 +37,7 @@ jobs: core_ref: v20.0.0rc1 core_configure_flags: --disable-tests go_ref: soroban-v1.0.0-rc - soroban_tools_ref: v20.0.0-rc.1 + soroban_tools_ref: v20.0.0-rc1 test_matrix: | { "network": ["standalone"], @@ -56,7 +56,7 @@ jobs: core_configure_flags: --disable-tests core_build_runner_type: ubuntu-latest-16-cores go_ref: soroban-v1.0.0-rc - soroban_tools_ref: v20.0.0-rc.1 + soroban_tools_ref: v20.0.0-rc1 soroban_rpc_build_runner_type: ubuntu-latest-16-cores test_matrix: | { diff --git a/Makefile b/Makefile index d772b43a..85c34423 100644 --- a/Makefile +++ b/Makefile @@ -30,7 +30,7 @@ build-soroban-dev: CORE_REF=v20.0.0rc1 \ CORE_CONFIGURE_FLAGS='--disable-tests' \ HORIZON_REF=soroban-v1.0.0-rc \ - SOROBAN_RPC_REF=v20.0.0-rc.1 + SOROBAN_RPC_REF=v20.0.0-rc1 build: $(MAKE) -j 4 build-deps From 4417ebe535592e73d1e9edd8b4bb42d8aab340e7 Mon Sep 17 00:00:00 2001 From: Shawn Reuland Date: Fri, 15 Sep 2023 09:17:53 -0700 Subject: [PATCH 5/5] use commit hash for core version, no tag available --- .github/workflows/build-soroban-dev.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-soroban-dev.yml b/.github/workflows/build-soroban-dev.yml index 98b7f3d7..774bdc2b 100644 --- a/.github/workflows/build-soroban-dev.yml +++ b/.github/workflows/build-soroban-dev.yml @@ -34,7 +34,7 @@ jobs: with: arch: amd64 tag: soroban-dev-amd64 - core_ref: v20.0.0rc1 + core_ref: ecb24df104c2453a00fa5097d2e879d7731b9596 core_configure_flags: --disable-tests go_ref: soroban-v1.0.0-rc soroban_tools_ref: v20.0.0-rc1 @@ -52,7 +52,7 @@ jobs: with: arch: arm64 tag: soroban-dev-arm64 - core_ref: v20.0.0rc1 + core_ref: ecb24df104c2453a00fa5097d2e879d7731b9596 core_configure_flags: --disable-tests core_build_runner_type: ubuntu-latest-16-cores go_ref: soroban-v1.0.0-rc