Skip to content

Commit

Permalink
update (#500)
Browse files Browse the repository at this point in the history
  • Loading branch information
tsachiherman authored Sep 21, 2023
1 parent c7bdeb7 commit 3e5a3a3
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 19 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/build-latest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
soroban_tools_ref: v0.4.0
test_matrix: |
{
"network": ["testnet", "pubnet", "local"],
"network": ["pubnet", "local"],
"options": ["", "--enable-horizon-captive-core"]
}
Expand All @@ -54,11 +54,13 @@ jobs:
arch: arm64
tag: latest-arm64
core_ref: v19.14.0
core_build_runner_type: ubuntu-latest-16-cores
go_ref: horizon-v2.26.1
soroban_tools_ref: v0.4.0
soroban_rpc_build_runner_type: ubuntu-latest-16-cores
test_matrix: |
{
"network": ["testnet", "pubnet", "local"],
"network": ["pubnet", "local"],
"options": ["", "--enable-horizon-captive-core"]
}
Expand Down
17 changes: 8 additions & 9 deletions .github/workflows/build-soroban-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ name: Soroban-Dev
on:
push:
branches:
- master
- master
pull_request:

# Prevent more than one build of this workflow for a branch to be running at the
Expand All @@ -18,13 +18,14 @@ concurrency:
cancel-in-progress: true

jobs:

complete:
if: always()
needs: [manifest]
runs-on: ubuntu-latest
steps:
- if: contains(needs.*.result, 'failure') || contains(needs.*.result, 'cancelled')
run: exit 1
- if: contains(needs.*.result, 'failure') || contains(needs.*.result, 'cancelled')
run: exit 1

amd64:
uses: ./.github/workflows/build.yml
Expand All @@ -34,11 +35,10 @@ jobs:
with:
arch: amd64
tag: soroban-dev-amd64
core_ref: v20.0.0rc1
core_configure_flags: --disable-tests
core_ref: v20.0.0rc2
core_supports_testing_soroban_high_limit_override: "true"
go_ref: horizon-v2.27.0-rc1
soroban_tools_ref: v20.0.0-rc2
soroban_tools_ref: v20.0.0-rc3
test_matrix: |
{
"network": ["local"],
Expand All @@ -53,12 +53,11 @@ jobs:
with:
arch: arm64
tag: soroban-dev-arm64
core_ref: v20.0.0rc1
core_configure_flags: --disable-tests
core_ref: v20.0.0rc2
core_supports_testing_soroban_high_limit_override: "true"
core_build_runner_type: ubuntu-latest-16-cores
go_ref: horizon-v2.27.0-rc1
soroban_tools_ref: v20.0.0-rc2
soroban_tools_ref: v20.0.0-rc3
soroban_rpc_build_runner_type: ubuntu-latest-16-cores
test_matrix: |
{
Expand Down
12 changes: 8 additions & 4 deletions .github/workflows/build-testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,10 @@ jobs:
with:
arch: amd64
tag: testing-amd64
core_ref: v20.0.0rc1
core_ref: v20.0.0rc2
core_supports_testing_soroban_high_limit_override: "true"
go_ref: horizon-v2.27.0-rc1
soroban_tools_ref: v20.0.0-rc2
soroban_tools_ref: v20.0.0-rc3
test_matrix: |
{
"network": ["testnet", "pubnet", "local"],
Expand All @@ -60,9 +61,12 @@ jobs:
with:
arch: arm64
tag: testing-arm64
core_ref: v20.0.0rc1
core_ref: v20.0.0rc2
core_supports_testing_soroban_high_limit_override: "true"
core_build_runner_type: ubuntu-latest-16-cores
go_ref: horizon-v2.27.0-rc1
soroban_tools_ref: v20.0.0-rc2
soroban_tools_ref: v20.0.0-rc3
soroban_rpc_build_runner_type: ubuntu-latest-16-cores
test_matrix: |
{
"network": ["testnet", "pubnet", "local"],
Expand Down
9 changes: 5 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -25,16 +25,17 @@ build-latest:

build-testing:
$(MAKE) build TAG=testing \
CORE_REF=v20.0.0rc1 \
CORE_REF=v20.0.0rc2 \
CORE_SUPPORTS_TESTING_SOROBAN_HIGH_LIMIT_OVERRIDE=true \
HORIZON_REF=horizon-v2.27.0-rc1 \
SOROBAN_RPC_REF=v20.0.0-rc2
SOROBAN_RPC_REF=v20.0.0-rc3

build-soroban-dev:
$(MAKE) build TAG=soroban-dev \
CORE_REF=v20.0.0rc1 \
CORE_REF=v20.0.0rc2 \
CORE_SUPPORTS_TESTING_SOROBAN_HIGH_LIMIT_OVERRIDE=true \
HORIZON_REF=horizon-v2.27.0-rc1 \
SOROBAN_RPC_REF=v20.0.0-rc2
SOROBAN_RPC_REF=v20.0.0-rc3

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

0 comments on commit 3e5a3a3

Please sign in to comment.