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:
|
2022-09-20 17:39:49 +00:00
|
|
|
workflow_call:
|
2022-07-13 18:55:30 +00:00
|
|
|
push:
|
|
|
|
branches: [ "main" ]
|
|
|
|
paths: ["api", "chat", "control", "robosats"]
|
2023-10-23 22:48:38 +00:00
|
|
|
pull_request_target:
|
2022-07-13 18:55:30 +00:00
|
|
|
branches: [ "main" ]
|
|
|
|
paths: ["api", "chat", "control", "robosats"]
|
|
|
|
|
2023-10-23 22:48:38 +00:00
|
|
|
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:
|
2023-11-13 14:40:47 +00:00
|
|
|
max-parallel: 2
|
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'
|
2023-09-11 16:00:32 +00:00
|
|
|
uses: actions/checkout@v4
|
2023-10-23 22:48:38 +00:00
|
|
|
|
2023-11-13 14:40:47 +00:00
|
|
|
- name: Update Python version in Dockerfile
|
|
|
|
run: |
|
|
|
|
sed -i "1s/FROM python:.*/FROM python:${{ matrix.python-tag }}/" Dockerfile
|
|
|
|
sed -i '/RUN pip install --no-cache-dir -r requirements.txt/a COPY requirements_dev.txt .\nRUN pip install --no-cache-dir -r requirements_dev.txt' Dockerfile
|
2023-10-23 22:48:38 +00:00
|
|
|
|
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') }}
|
|
|
|
restore-keys: |
|
|
|
|
coordinator-docker-cache-
|
2023-10-23 22:48:38 +00:00
|
|
|
|
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"
|
|
|
|
# Ideally we run only coordinator-${{ matrix.ln-vendor }} , at the moment some tests fail if LND is not around.
|
|
|
|
services: |
|
|
|
|
bitcoind
|
|
|
|
postgres
|
|
|
|
redis
|
|
|
|
coordinator-CLN
|
|
|
|
coordinator-LND
|
|
|
|
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-12 12:39:39 +00:00
|
|
|
|
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
|
2023-10-23 22:48:38 +00:00
|
|
|
|
|
|
|
- name: 'Run tests with coverage'
|
2022-07-13 18:55:30 +00:00
|
|
|
run: |
|
2023-11-12 12:39:39 +00:00
|
|
|
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
|