From 5ecc3b6529e4af555ce94caf9eac1cdd2e268e71 Mon Sep 17 00:00:00 2001 From: Leigh <351529+leighmcculloch@users.noreply.github.com> Date: Wed, 10 Dec 2025 13:52:31 +1000 Subject: [PATCH] add quickstart workflow ci --- .github/workflows/quickstart.yml | 47 ++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 .github/workflows/quickstart.yml diff --git a/.github/workflows/quickstart.yml b/.github/workflows/quickstart.yml new file mode 100644 index 0000000000..67eac46efc --- /dev/null +++ b/.github/workflows/quickstart.yml @@ -0,0 +1,47 @@ +name: Quickstart + +on: + pull_request: + +concurrency: + group: ${{ github.workflow }}-${{ github.event.pull_request.number }} + cancel-in-progress: true + +jobs: + build: + uses: stellar/quickstart/.github/workflows/build.yml@main + with: + images: | + [ + { + "tag": "testing-with-pr", + "inherit": "testing", + "config": { + "horizon_skip_protocol_version_check": true + }, + "deps": [ + { "name": "core", "repo": "${{ github.event.pull_request.head.repo.full_name }}", "ref": "${{ github.event.pull_request.head.sha }}", "options": { "configure_flags": "--disable-tests" } } + ] + }, + { + "tag": "nightly-with-pr", + "inherit": "nightly", + "config": { + "horizon_skip_protocol_version_check": true + }, + "deps": [ + { "name": "core", "repo": "${{ github.event.pull_request.head.repo.full_name }}", "ref": "${{ github.event.pull_request.head.sha }}", "options": { "configure_flags": "--disable-tests" } } + ] + }, + { + "tag": "nightly-next-with-pr", + "inherit": "nightly-next", + "config": { + "horizon_skip_protocol_version_check": true + }, + "deps": [ + { "name": "core", "repo": "${{ github.event.pull_request.head.repo.full_name }}", "ref": "${{ github.event.pull_request.head.sha }}", "options": { "configure_flags": "--disable-tests" } } + ] + } + ] + archs: '["amd64"]'