From 458d03c39ea576dfdcb81338ced6216338527b94 Mon Sep 17 00:00:00 2001 From: Shawn Reuland Date: Mon, 2 Oct 2023 16:09:05 -0700 Subject: [PATCH] #490: update test matrix to not ref --enable-horizon-captive-core, it's gone --- .github/workflows/build-latest.yml | 6 ++---- .github/workflows/build-soroban-dev.yml | 4 ++-- .github/workflows/build-testing.yml | 12 ++++++------ 3 files changed, 10 insertions(+), 12 deletions(-) diff --git a/.github/workflows/build-latest.yml b/.github/workflows/build-latest.yml index e31aa028..01d2aa38 100644 --- a/.github/workflows/build-latest.yml +++ b/.github/workflows/build-latest.yml @@ -41,8 +41,7 @@ jobs: soroban_tools_ref: v0.4.0 test_matrix: | { - "network": ["pubnet", "local"], - "options": ["", "--enable-horizon-captive-core"] + "network": ["pubnet", "local"] } arm64: @@ -60,8 +59,7 @@ jobs: soroban_rpc_build_runner_type: ubuntu-latest-16-cores test_matrix: | { - "network": ["pubnet", "local"], - "options": ["", "--enable-horizon-captive-core"] + "network": ["pubnet", "local"] } manifest: diff --git a/.github/workflows/build-soroban-dev.yml b/.github/workflows/build-soroban-dev.yml index 9e171682..e1007b45 100644 --- a/.github/workflows/build-soroban-dev.yml +++ b/.github/workflows/build-soroban-dev.yml @@ -42,7 +42,7 @@ jobs: test_matrix: | { "network": ["local"], - "options": ["", "--enable-horizon-captive-core --enable-soroban-rpc"], + "options": ["", "--enable-soroban-rpc"], } arm64: @@ -62,7 +62,7 @@ jobs: test_matrix: | { "network": ["local"], - "options": ["", "--enable-horizon-captive-core --enable-soroban-rpc"], + "options": ["", "--enable-soroban-rpc"], } manifest: diff --git a/.github/workflows/build-testing.yml b/.github/workflows/build-testing.yml index 32cec123..88226b5d 100644 --- a/.github/workflows/build-testing.yml +++ b/.github/workflows/build-testing.yml @@ -44,12 +44,12 @@ jobs: test_matrix: | { "network": ["testnet", "pubnet", "local"], - "options": ["", "--enable-horizon-captive-core --enable-soroban-rpc"], + "options": ["", "--enable-soroban-rpc"], "exclude": [ - { "network": "pubnet", "options": "--enable-horizon-captive-core --enable-soroban-rpc" }, + { "network": "pubnet", "options": "--enable-soroban-rpc" }, ], "include": [ - { "network": "pubnet", "options": "--enable-horizon-captive-core" }, + { "network": "pubnet", "options": "" }, ] } @@ -70,12 +70,12 @@ jobs: test_matrix: | { "network": ["testnet", "pubnet", "local"], - "options": ["", "--enable-horizon-captive-core --enable-soroban-rpc"], + "options": ["", "--enable-soroban-rpc"], "exclude": [ - { "network": "pubnet", "options": "--enable-horizon-captive-core --enable-soroban-rpc" }, + { "network": "pubnet", "options": "--enable-soroban-rpc" }, ], "include": [ - { "network": "pubnet", "options": "--enable-horizon-captive-core" }, + { "network": "pubnet", "options": "" }, ] }