robosats/.github/workflows/integration-tests.yml

76 lines
2.3 KiB
YAML
Raw Normal View History

2022-10-20 13:30:44 +00:00
name: "Test: Coordinator"
2022-07-13 18:55:30 +00:00
on:
2022-07-13 20:40:58 +00:00
workflow_dispatch:
workflow_call:
2022-07-13 18:55:30 +00:00
push:
branches: [ "main" ]
paths: ["api", "chat", "control", "robosats"]
pull_request_target:
2022-07-13 18:55:30 +00:00
branches: [ "main" ]
paths: ["api", "chat", "control", "robosats"]
concurrency:
group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}'
cancel-in-progress: true
2022-10-25 18:04:12 +00:00
2022-07-13 18:55:30 +00:00
jobs:
2023-11-13 14:40:47 +00:00
test:
2022-07-13 18:55:30 +00:00
runs-on: ubuntu-latest
strategy:
max-parallel: 4
2022-07-13 18:55:30 +00:00
matrix:
2023-11-13 14:40:47 +00:00
python-tag: ['3.11.6-slim-bookworm', '3.12-slim-bookworm']
lnd-version: ['v0.17.0-beta'] # , 'v0.17.0-beta.rc1']
cln-version: ['v23.08.1']
ln-vendor: ['LND', 'CLN']
2022-07-13 18:55:30 +00:00
steps:
2022-07-13 20:40:58 +00:00
- name: 'Checkout'
uses: actions/checkout@v4
- name: Patch Dockerfile and .env-sample
2023-11-13 14:40:47 +00:00
run: |
sed -i "1s/FROM python:.*/FROM python:${{ matrix.python-tag }}/" Dockerfile
sed -i "s/^LNVENDOR=.*/LNVENDOR='${{ matrix.ln-vendor }}'/" .env-sample
2023-11-13 14:40:47 +00:00
- uses: satackey/action-docker-layer-caching@v0.0.11
continue-on-error: true
with:
key: coordinator-docker-cache-${{ hashFiles('Dockerfile', 'requirements.txt', 'requirements_dev.txt') }}
2023-11-13 14:40:47 +00:00
restore-keys: |
coordinator-docker-cache-
2023-11-13 14:40:47 +00:00
- name: 'Compose Regtest Orchestration'
uses: isbang/compose-action@v1.5.1
with:
compose-file: "./docker-tests.yml"
down-flags: "--volumes"
services: |
bitcoind
postgres
redis
coordinator-${{ matrix.ln-vendor }}
2023-11-13 14:40:47 +00:00
robot-LND
coordinator
env:
LND_VERSION: ${{ matrix.lnd-version }}
CLN_VERSION: ${{ matrix.cln-version }}
BITCOIND_VERSION: ${{ matrix.bitcoind-version }}
ROBOSATS_ENVS_FILE: ".env-sample"
2023-11-13 14:40:47 +00:00
- name: Wait for coordinator (django server)
run: |
while [ "$(docker inspect --format "{{.State.Health.Status}}" coordinator)" != "healthy" ]; do
echo "Waiting for coordinator to be healthy..."
sleep 5
done
- name: 'Run tests with coverage'
2022-07-13 18:55:30 +00:00
run: |
docker exec coordinator coverage run manage.py test
docker exec coordinator coverage report
2023-11-13 14:40:47 +00:00
env:
LNVENDOR: ${{ matrix.ln-vendor }}
DEVELOPMENT: True
USE_TOR: False