Skip to content

XLS-80d Permissioned Domains #2655

XLS-80d Permissioned Domains

XLS-80d Permissioned Domains #2655

name: Integration test
env:
POETRY_VERSION: 1.8.3
RIPPLED_DOCKER_IMAGE: rippleci/rippled:2.3.0-rc1
on:
push:
branches: [main]
pull_request:
workflow_dispatch:
jobs:
integration-test:
name: Integration test
runs-on: ubuntu-latest
timeout-minutes: 30
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Load cached .local
id: cache-poetry
uses: actions/cache@v4
with:
path: /home/runner/.local
key: dotlocal-${{ env.POETRY_VERSION }}
- name: Run docker in background
run: |
docker run -dit -p 5005:5005 -p 6006:6006 -v "${{ github.workspace }}/.ci-config/":/etc/opt/ripple/ --name rippled_standalone --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 }}
docker exec -d rippled_standalone rippled -a
- name: Install poetry
if: steps.cache-poetry.outputs.cache-hit != 'true'
run: |
curl -sSL https://install.python-poetry.org/ | python - --version ${{ env.POETRY_VERSION }}
echo "$HOME/.local/bin" >> $GITHUB_PATH
- name: Install Python + Retrieve Poetry dependencies from cache
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: "poetry"
- name: Display Python version
run: |
python -c "import sys; print(sys.version)"
- name: Install poetry dependencies
run: poetry install
- name: Integration test
run: |
poetry run poe test_integration
poetry run coverage report --fail-under=70
- name: Stop docker container
if: always()
run: docker stop rippled_standalone