File tree 2 files changed +7
-7
lines changed
cmd/stellar-rpc/internal/integrationtest/infrastructure
2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -98,16 +98,16 @@ jobs:
98
98
strategy :
99
99
matrix :
100
100
os : [ ubuntu-20.04, ubuntu-22.04 ]
101
- protocol-version : [ 22, 23 ]
101
+ protocol-version : [ 21, 22 ]
102
102
runs-on : ${{ matrix.os }}
103
103
env :
104
104
STELLAR_RPC_INTEGRATION_TESTS_ENABLED : true
105
105
STELLAR_RPC_INTEGRATION_TESTS_CORE_MAX_SUPPORTED_PROTOCOL : ${{ matrix.protocol-version }}
106
106
STELLAR_RPC_INTEGRATION_TESTS_CAPTIVE_CORE_BIN : /usr/bin/stellar-core
107
- PROTOCOL_22_CORE_DEBIAN_PKG_VERSION : 22.1.0-2194.0241e79f7.focal
108
- PROTOCOL_22_CORE_DOCKER_IMG : stellar/stellar-core:22.1.0-2194.0241e79f7.focal
109
- PROTOCOL_23_CORE_DEBIAN_PKG_VERSION : 22.1.1-2251.ac9f21ac7.focal~do~not~use~in~prd
110
- PROTOCOL_23_CORE_DOCKER_IMG : stellar/unsafe-stellar-core:22.1.1-2251.ac9f21ac7.focal-do-not-use-in-prd
107
+ PROTOCOL_21_CORE_DEBIAN_PKG_VERSION : 22.1.0-2194.0241e79f7.focal
108
+ PROTOCOL_21_CORE_DOCKER_IMG : stellar/stellar-core:22.1.0-2194.0241e79f7.focal
109
+ PROTOCOL_22_CORE_DEBIAN_PKG_VERSION : 22.1.1-2251.ac9f21ac7.focal~do~not~use~in~prd
110
+ PROTOCOL_22_CORE_DOCKER_IMG : stellar/unsafe-stellar-core:22.1.1-2251.ac9f21ac7.focal-do-not-use-in-prd
111
111
112
112
steps :
113
113
- uses : actions/checkout@v4
Original file line number Diff line number Diff line change @@ -149,8 +149,8 @@ func NewTest(t *testing.T, cfg *TestConfig) *Test {
149
149
i .enableCoreHTTPQueryServer = cfg .EnableCoreHTTPQueryServer
150
150
}
151
151
152
- if i .enableCoreHTTPQueryServer && GetCoreMaxSupportedProtocol () < 23 {
153
- t .Skip ("Core's HTTP Query server is only available from protocol 23 " )
152
+ if i .enableCoreHTTPQueryServer && GetCoreMaxSupportedProtocol () < 22 {
153
+ t .Skip ("Core's HTTP Query server is only available from protocol 22 " )
154
154
}
155
155
156
156
if i .sqlitePath == "" {
You can’t perform that action at this time.
0 commit comments