From e60c7c70e017cc4de4fe16b36eb0baf816fe7983 Mon Sep 17 00:00:00 2001 From: Leigh McCulloch <351529+leighmcculloch@users.noreply.github.com> Date: Mon, 30 Oct 2023 13:57:45 -0700 Subject: [PATCH] fix --- .github/workflows/build-soroban-dev.yml | 1 - .github/workflows/build-testing.yml | 2 -- Makefile | 2 -- 3 files changed, 5 deletions(-) diff --git a/.github/workflows/build-soroban-dev.yml b/.github/workflows/build-soroban-dev.yml index dd64708f..bda94970 100644 --- a/.github/workflows/build-soroban-dev.yml +++ b/.github/workflows/build-soroban-dev.yml @@ -35,7 +35,6 @@ jobs: with: arch: amd64 tag: soroban-dev-amd64 - core_repo: https://github.com/sisuresh/stellar-core.git core_ref: v20.0.0-rc.2.2 core_supports_enable_soroban_diagnostic_events: "true" go_ref: horizon-v2.27.0-rc1 diff --git a/.github/workflows/build-testing.yml b/.github/workflows/build-testing.yml index e7532149..a2a82ebb 100644 --- a/.github/workflows/build-testing.yml +++ b/.github/workflows/build-testing.yml @@ -37,7 +37,6 @@ jobs: with: arch: amd64 tag: testing-amd64 - core_repo: https://github.com/sisuresh/stellar-core.git core_ref: v20.0.0-rc.2.2 core_supports_enable_soroban_diagnostic_events: "true" go_ref: horizon-v2.27.0-rc1 @@ -59,7 +58,6 @@ jobs: with: arch: arm64 tag: testing-arm64 - core_repo: https://github.com/sisuresh/stellar-core.git core_ref: v20.0.0-rc.2.2 core_supports_enable_soroban_diagnostic_events: "true" core_build_runner_type: ubuntu-latest-16-cores diff --git a/Makefile b/Makefile index 5bda784d..e84b70cd 100644 --- a/Makefile +++ b/Makefile @@ -26,7 +26,6 @@ build-latest: build-testing: $(MAKE) build TAG=testing \ - CORE_REPO=https://github.com/sisuresh/stellar-core.git \ CORE_REF=v20.0.0-rc.2.2 \ CORE_SUPPORTS_ENABLE_SOROBAN_DIAGNOSTIC_EVENTS=true \ HORIZON_REF=horizon-v2.27.0-rc1 \ @@ -34,7 +33,6 @@ build-testing: build-soroban-dev: $(MAKE) build TAG=soroban-dev \ - CORE_REPO=https://github.com/sisuresh/stellar-core.git \ CORE_REF=v20.0.0-rc.2.2 \ CORE_SUPPORTS_ENABLE_SOROBAN_DIAGNOSTIC_EVENTS=true \ HORIZON_REF=horizon-v2.27.0-rc1 \