Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update testing to use latest dev rpc/horizon with protocol 22 #632

Merged
merged 10 commits into from
Oct 15, 2024
Merged
16 changes: 8 additions & 8 deletions .github/workflows/build-future.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,12 @@ jobs:
sha: ${{ inputs.sha }}
arch: amd64
tag: ${{ inputs.tag-prefix }}future-amd64
protocol_version_default: 21
protocol_version_default: 22
xdr_ref: v22.0.0-rc.1.1
core_ref: v22.0.0rc2
horizon_ref: horizon-v2.32.0
soroban_rpc_ref: v21.5.1
friendbot_ref: 31fc8f4236388f12fc609228b7a7f5494867a1f9
horizon_ref: horizon-v22.0.0-rc1
soroban_rpc_ref: v22.0.0-rc2
friendbot_ref: horizon-v22.0.0-rc1
test_matrix: |
{
"network": ["local"],
Expand All @@ -55,12 +55,12 @@ jobs:
sha: ${{ inputs.sha }}
arch: arm64
tag: ${{ inputs.tag-prefix }}future-arm64
protocol_version_default: 21
protocol_version_default: 22
xdr_ref: v22.0.0-rc.1.1
core_ref: v22.0.0rc2
horizon_ref: horizon-v2.32.0
soroban_rpc_ref: v21.5.1
friendbot_ref: 31fc8f4236388f12fc609228b7a7f5494867a1f9
horizon_ref: horizon-v22.0.0-rc1
soroban_rpc_ref: v22.0.0-rc2
friendbot_ref: horizon-v22.0.0-rc1
test_matrix: |
{
"network": ["local"],
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/build-testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,12 @@ jobs:
sha: ${{ inputs.sha }}
arch: amd64
tag: ${{ inputs.tag-prefix }}testing-amd64
protocol_version_default: 21
protocol_version_default: 22
xdr_ref: v22.0.0-rc.1.1
core_ref: v22.0.0rc2
horizon_ref: horizon-v2.32.0
soroban_rpc_ref: v21.5.1
friendbot_ref: 31fc8f4236388f12fc609228b7a7f5494867a1f9
horizon_ref: horizon-v22.0.0-rc1
soroban_rpc_ref: v22.0.0-rc2
friendbot_ref: horizon-v22.0.0-rc1
test_matrix: |
{
"network": ["testnet", "pubnet", "local"],
Expand All @@ -57,12 +57,12 @@ jobs:
sha: ${{ inputs.sha }}
arch: arm64
tag: ${{ inputs.tag-prefix }}testing-arm64
protocol_version_default: 21
protocol_version_default: 22
xdr_ref: v22.0.0-rc.1.1
core_ref: v22.0.0rc2
horizon_ref: horizon-v2.32.0
soroban_rpc_ref: v21.5.1
friendbot_ref: 31fc8f4236388f12fc609228b7a7f5494867a1f9
horizon_ref: horizon-v22.0.0-rc1
soroban_rpc_ref: v22.0.0-rc2
friendbot_ref: horizon-v22.0.0-rc1
test_matrix: |
{
"network": ["testnet", "pubnet", "local"],
Expand Down
16 changes: 8 additions & 8 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -32,21 +32,21 @@ build-latest:

build-testing:
$(MAKE) build TAG=testing \
PROTOCOL_VERSION_DEFAULT=21 \
PROTOCOL_VERSION_DEFAULT=22 \
XDR_REF=v22.0.0-rc.1.1 \
CORE_REF=v22.0.0rc2 \
HORIZON_REF=horizon-v2.32.0 \
SOROBAN_RPC_REF=v21.5.1 \
FRIENDBOT_REF=31fc8f4236388f12fc609228b7a7f5494867a1f9
HORIZON_REF=horizon-v22.0.0-rc1 \
SOROBAN_RPC_REF=v22.0.0-rc2 \
FRIENDBOT_REF=horizon-v22.0.0-rc1

build-future:
$(MAKE) build TAG=future \
PROTOCOL_VERSION_DEFAULT=21 \
PROTOCOL_VERSION_DEFAULT=22 \
XDR_REF=v22.0.0-rc.1.1 \
CORE_REF=v22.0.0rc2 \
HORIZON_REF=horizon-v2.32.0 \
SOROBAN_RPC_REF=v21.5.1 \
FRIENDBOT_REF=31fc8f4236388f12fc609228b7a7f5494867a1f9
HORIZON_REF=horizon-v22.0.0-rc1 \
SOROBAN_RPC_REF=v22.0.0-rc2 \
FRIENDBOT_REF=horizon-v22.0.0-rc1

build:
$(MAKE) -j 4 build-deps
Expand Down
Loading