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 soroban-dev image to use 20.0.0 versions #529

Merged
merged 3 commits into from
Dec 7, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/build-soroban-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,11 @@ jobs:
with:
arch: amd64
tag: soroban-dev-amd64
core_ref: v20.0.0-rc.2.2
core_ref: v20.0.0
core_supports_enable_soroban_diagnostic_events: "true"
go_ref: horizon-v2.27.0-rc1
go_ref: horizon-v2.27.0
xdr_ref: v20.0.1
soroban_tools_ref: v20.0.0-rc4
soroban_tools_ref: v20.0.0
test_matrix: |
{
"network": ["local"],
Expand All @@ -54,12 +54,12 @@ jobs:
with:
arch: arm64
tag: soroban-dev-arm64
core_ref: v20.0.0-rc.2.2
core_ref: v20.0.0
core_supports_enable_soroban_diagnostic_events: "true"
core_build_runner_type: ubuntu-latest-16-cores
go_ref: horizon-v2.27.0-rc1
go_ref: horizon-v2.27.0
xdr_ref: v20.0.1
soroban_tools_ref: v20.0.0-rc4
soroban_tools_ref: v20.0.0
soroban_rpc_build_runner_type: ubuntu-latest-16-cores
test_matrix: |
{
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/build-testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,11 @@ jobs:
with:
arch: amd64
tag: testing-amd64
core_ref: v20.0.0-rc.2.2
core_ref: v20.0.0
core_supports_enable_soroban_diagnostic_events: "true"
go_ref: horizon-v2.27.0-rc1
go_ref: horizon-v2.27.0
xdr_ref: v20.0.1
soroban_tools_ref: v20.0.0-rc4
soroban_tools_ref: v20.0.0
test_matrix: |
{
"network": ["testnet", "pubnet", "local"],
Expand All @@ -59,12 +59,12 @@ jobs:
with:
arch: arm64
tag: testing-arm64
core_ref: v20.0.0-rc.2.2
core_ref: v20.0.0
core_supports_enable_soroban_diagnostic_events: "true"
core_build_runner_type: ubuntu-latest-16-cores
go_ref: horizon-v2.27.0-rc1
go_ref: horizon-v2.27.0
xdr_ref: v20.0.1
soroban_tools_ref: v20.0.0-rc4
soroban_tools_ref: v20.0.0
soroban_rpc_build_runner_type: ubuntu-latest-16-cores
test_matrix: |
{
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ build-latest:
HORIZON_REF=horizon-v2.26.1 \
SOROBAN_RPC_REF=v0.4.0

# The hashes below for CORE_REF and SOROBAN_RPC_REF are the refs for the v20.0.0 release
# The git refs below for CORE_REF, SOROBAN_RPC_REF, HORIZON_REF are refs to the v20.0.0 release tags.
build-testing:
$(MAKE) build TAG=testing \
XDR_REF=v20.0.1 \
Expand All @@ -36,7 +36,7 @@ build-testing:
HORIZON_REF=horizon-v2.27.0 \
SOROBAN_RPC_REF=91a441ff9593377c11d7e8b26c4942e941d548bb

# The hashes below for CORE_REF and SOROBAN_RPC_REF are the refs for the v20.0.0 release
# The git refs below for CORE_REF, SOROBAN_RPC_REF, HORIZON_REF are refs to the v20.0.0 release tags.
build-soroban-dev:
$(MAKE) build TAG=soroban-dev \
XDR_REF=v20.0.1 \
Expand Down
Loading