diff --git a/.github/workflows/build-soroban-dev.yml b/.github/workflows/build-soroban-dev.yml index 7de5beb5..ec752e61 100644 --- a/.github/workflows/build-soroban-dev.yml +++ b/.github/workflows/build-soroban-dev.yml @@ -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"], @@ -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: | { diff --git a/.github/workflows/build-testing.yml b/.github/workflows/build-testing.yml index 78fcb5c6..ce04b2f9 100644 --- a/.github/workflows/build-testing.yml +++ b/.github/workflows/build-testing.yml @@ -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 @@ -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 @@ -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"], @@ -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"], diff --git a/Makefile b/Makefile index 937a8aa5..ce222c4e 100644 --- a/Makefile +++ b/Makefile @@ -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