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 to use preview 11 versions #483

Merged
merged 6 commits into from
Sep 15, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
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
16 changes: 8 additions & 8 deletions .github/workflows/build-soroban-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,10 @@ jobs:
with:
arch: amd64
tag: soroban-dev-amd64
core_ref: soroban-preview-10-July20
core_configure_flags: --disable-tests --enable-next-protocol-version-unsafe-for-production
go_ref: soroban-v0.0.9.1
soroban_tools_ref: v0.9.2
core_ref: ecb24df104c2453a00fa5097d2e879d7731b9596
core_configure_flags: --disable-tests
go_ref: soroban-v1.0.0-rc
soroban_tools_ref: v20.0.0-rc1
test_matrix: |
{
"network": ["standalone"],
Expand All @@ -52,11 +52,11 @@ jobs:
with:
arch: arm64
tag: soroban-dev-arm64
core_ref: soroban-preview-10-July20
core_configure_flags: --disable-tests --enable-next-protocol-version-unsafe-for-production
core_ref: ecb24df104c2453a00fa5097d2e879d7731b9596
core_configure_flags: --disable-tests
core_build_runner_type: ubuntu-latest-16-cores
go_ref: soroban-v0.0.9.1
soroban_tools_ref: v0.9.2
go_ref: soroban-v1.0.0-rc
soroban_tools_ref: v20.0.0-rc1
soroban_rpc_build_runner_type: ubuntu-latest-16-cores
test_matrix: |
{
Expand Down
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ build-testing:

build-soroban-dev:
$(MAKE) build TAG=soroban-dev \
CORE_REF=soroban-preview-10-July20 \
CORE_CONFIGURE_FLAGS='--disable-tests --enable-next-protocol-version-unsafe-for-production' \
HORIZON_REF=soroban-v0.0.9.1 \
SOROBAN_RPC_REF=v0.9.2
CORE_REF=v20.0.0rc1 \
CORE_CONFIGURE_FLAGS='--disable-tests' \
HORIZON_REF=soroban-v1.0.0-rc \
SOROBAN_RPC_REF=v20.0.0-rc1

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