Skip to content

Commit d0dc6cc

Browse files
committed
Merge remote-tracking branch 'origin/main' into request-from-xrpl
2 parents a8fa950 + 93feff3 commit d0dc6cc

File tree

16 files changed

+2071
-179
lines changed

16 files changed

+2071
-179
lines changed

.github/workflows/faucet_test.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@ on:
44
push:
55
branches: [main]
66
workflow_dispatch:
7+
workflow_call:
8+
inputs:
9+
git_ref:
10+
description: "Git ref (branch, tag, or SHA) to test"
11+
required: false
12+
type: string
13+
default: ""
714

815
env:
916
POETRY_VERSION: 2.1.1
@@ -20,6 +27,8 @@ jobs:
2027
steps:
2128
- name: Checkout code
2229
uses: actions/checkout@v4
30+
with:
31+
ref: ${{ inputs.git_ref != '' && inputs.git_ref || github.ref }}
2332

2433
- name: Load cached .local
2534
id: cache-poetry

.github/workflows/integration_test.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,15 @@ on:
88
push:
99
branches: [main]
1010
pull_request:
11+
types: [opened, synchronize, reopened, ready_for_review]
1112
workflow_dispatch:
13+
workflow_call:
14+
inputs:
15+
git_ref:
16+
description: "Git ref (branch, tag, or SHA) to test"
17+
required: false
18+
type: string
19+
default: ""
1220

1321
jobs:
1422
integration-test:
@@ -22,6 +30,8 @@ jobs:
2230
steps:
2331
- name: Checkout code
2432
uses: actions/checkout@v4
33+
with:
34+
ref: ${{ inputs.git_ref != '' && inputs.git_ref || github.ref }}
2535

2636
- name: Load cached .local
2737
id: cache-poetry
@@ -32,7 +42,7 @@ jobs:
3242

3343
- name: Run docker in background
3444
run: |
35-
docker run --detach --rm -p 5005:5005 -p 6006:6006 --volume "${{ github.workspace }}/.ci-config/":"/etc/opt/ripple/" --name rippled-service --health-cmd="rippled server_info || exit 1" --health-interval=5s --health-retries=10 --health-timeout=2s --env GITHUB_ACTIONS=true --env CI=true --entrypoint bash ${{ env.RIPPLED_DOCKER_IMAGE }} -c "rippled -a"
45+
docker run --detach --rm -p 5005:5005 -p 6006:6006 --volume "${{ github.workspace }}/.ci-config/":"/etc/opt/ripple/" --name rippled-service --health-cmd="rippled server_info || exit 1" --health-interval=5s --health-retries=10 --health-timeout=2s --env GITHUB_ACTIONS=true --env CI=true --entrypoint bash ${{ env.RIPPLED_DOCKER_IMAGE }} -c "mkdir -p /var/lib/rippled/db/ && rippled -a"
3646
3747
- name: Install poetry
3848
if: steps.cache-poetry.outputs.cache-hit != 'true'

.github/workflows/publish_to_pypi.yml

Lines changed: 0 additions & 107 deletions
This file was deleted.

0 commit comments

Comments
 (0)