forked from stellar/stellar-core
-
Notifications
You must be signed in to change notification settings - Fork 3
48 lines (45 loc) · 1.68 KB
/
Copy pathquickstart.yml
File metadata and controls
48 lines (45 loc) · 1.68 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
name: Quickstart
on:
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number }}
cancel-in-progress: true
jobs:
build:
if: github.event.pull_request.head.repo.private == false
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 --enable-next-protocol-version-unsafe-for-production" } }
]
}
]
archs: '["amd64"]'