Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
tsachiherman committed Sep 21, 2023
1 parent c7bdeb7 commit fadb2e4
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 16 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-soroban-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@ jobs:
with:
arch: amd64
tag: soroban-dev-amd64
core_ref: v20.0.0rc1
core_ref: v20.0.0rc2
core_configure_flags: --disable-tests
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,12 @@ jobs:
with:
arch: arm64
tag: soroban-dev-arm64
core_ref: v20.0.0rc1
core_ref: v20.0.0rc2
core_configure_flags: --disable-tests
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
15 changes: 7 additions & 8 deletions .github/workflows/build-testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ name: Testing
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 @@ -20,14 +20,13 @@ 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 @@ -37,9 +36,9 @@ jobs:
with:
arch: amd64
tag: testing-amd64
core_ref: v20.0.0rc1
core_ref: v20.0.0rc2
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 +59,9 @@ jobs:
with:
arch: arm64
tag: testing-arm64
core_ref: v20.0.0rc1
core_ref: v20.0.0rc2
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 Down
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -25,16 +25,16 @@ build-latest:

build-testing:
$(MAKE) build TAG=testing \
CORE_REF=v20.0.0rc1 \
CORE_REF=v20.0.0rc2 \
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 fadb2e4

Please sign in to comment.