Skip to content

Commit 5ecc3b6

Browse files
add quickstart workflow ci
1 parent 8e54574 commit 5ecc3b6

File tree

1 file changed

+47
-0
lines changed

1 file changed

+47
-0
lines changed

.github/workflows/quickstart.yml

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
name: Quickstart
2+
3+
on:
4+
pull_request:
5+
6+
concurrency:
7+
group: ${{ github.workflow }}-${{ github.event.pull_request.number }}
8+
cancel-in-progress: true
9+
10+
jobs:
11+
build:
12+
uses: stellar/quickstart/.github/workflows/build.yml@main
13+
with:
14+
images: |
15+
[
16+
{
17+
"tag": "testing-with-pr",
18+
"inherit": "testing",
19+
"config": {
20+
"horizon_skip_protocol_version_check": true
21+
},
22+
"deps": [
23+
{ "name": "core", "repo": "${{ github.event.pull_request.head.repo.full_name }}", "ref": "${{ github.event.pull_request.head.sha }}", "options": { "configure_flags": "--disable-tests" } }
24+
]
25+
},
26+
{
27+
"tag": "nightly-with-pr",
28+
"inherit": "nightly",
29+
"config": {
30+
"horizon_skip_protocol_version_check": true
31+
},
32+
"deps": [
33+
{ "name": "core", "repo": "${{ github.event.pull_request.head.repo.full_name }}", "ref": "${{ github.event.pull_request.head.sha }}", "options": { "configure_flags": "--disable-tests" } }
34+
]
35+
},
36+
{
37+
"tag": "nightly-next-with-pr",
38+
"inherit": "nightly-next",
39+
"config": {
40+
"horizon_skip_protocol_version_check": true
41+
},
42+
"deps": [
43+
{ "name": "core", "repo": "${{ github.event.pull_request.head.repo.full_name }}", "ref": "${{ github.event.pull_request.head.sha }}", "options": { "configure_flags": "--disable-tests" } }
44+
]
45+
}
46+
]
47+
archs: '["amd64"]'

0 commit comments

Comments
 (0)