Skip to content

Update stellar-core to v20.1.0 in latest image (#553) #1

Update stellar-core to v20.1.0 in latest image (#553)

Update stellar-core to v20.1.0 in latest image (#553) #1

Workflow file for this run

name: Testing
# The `:testing` tag should only ever be formally released or release candidate
# versions of software. That means each ref should only ever be specified as a
# version tag for software that's either the latest release candidate or latest
# release.
on:
push:
branches:
- master
pull_request:
# Prevent more than one build of this workflow for a branch to be running at the
# same time, and if multiple are queued, only run the latest, cancelling any
# already running build. The exception being any protected branch, such as
# master, where a build for every commit will run.
concurrency:
group: ${{ github.workflow }}-${{ github.ref_protected == 'true' && github.sha || github.ref }}
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
amd64:

Check failure on line 32 in .github/workflows/build-testing.yml

View workflow run for this annotation

GitHub Actions / Testing

Invalid workflow file

The workflow is not valid. .github/workflows/build-testing.yml (Line: 32, Col: 3): Error calling workflow 'anupsdf/quickstart/.github/workflows/build.yml@9f809c3c1cbf7e17f429e2479a6918bd271993fe'. The nested job 'push-pr' is requesting 'packages: write, statuses: write', but is only allowed 'packages: read, statuses: none'. .github/workflows/build-testing.yml (Line: 32, Col: 3): Error calling workflow 'anupsdf/quickstart/.github/workflows/build.yml@9f809c3c1cbf7e17f429e2479a6918bd271993fe'. The nested job 'push-release' is requesting 'packages: write, statuses: write', but is only allowed 'packages: read, statuses: none'.
uses: ./.github/workflows/build.yml
secrets:
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
with:
arch: amd64
tag: testing-amd64
xdr_ref: v20.0.2
core_ref: v20.1.0
core_supports_enable_soroban_diagnostic_events: "true"
go_ref: horizon-v2.27.0
soroban_tools_ref: v20.1.0
test_matrix: |
{
"network": ["testnet", "pubnet", "local"],
"options": ["", "--enable-soroban-rpc"],
"exclude": [
{ "network": "pubnet", "options": "--enable-soroban-rpc" },
]
}
arm64:
uses: ./.github/workflows/build.yml
secrets:
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
with:
arch: arm64
tag: testing-arm64
xdr_ref: v20.0.2
core_ref: v20.1.0
core_supports_enable_soroban_diagnostic_events: "true"
core_build_runner_type: ubuntu-latest-16-cores
go_ref: horizon-v2.27.0
soroban_tools_ref: v20.1.0
soroban_rpc_build_runner_type: ubuntu-latest-16-cores
test_matrix: |
{
"network": ["testnet", "pubnet", "local"],
"options": ["", "--enable-soroban-rpc"],
"exclude": [
{ "network": "pubnet", "options": "--enable-soroban-rpc" },
]
}
manifest:
needs: [amd64, arm64]
uses: ./.github/workflows/manifest.yml
secrets:
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
with:
tag: testing
images: ${{ needs.amd64.outputs.image }} ${{ needs.arm64.outputs.image }}