Fixes clippy issues, updates warp #611
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI tests for CLN watchtower-plugin | |
on: [push, pull_request] | |
env: | |
bitcoind_version: 0.20.1 | |
cln_version: 0.12.1 | |
jobs: | |
cache-cln: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.9' | |
check-latest: true | |
- name: Create CLN cache | |
id: cache-cln | |
uses: actions/cache@v3 | |
env: | |
cache-name: cache-cln-dev | |
with: | |
path: lightning | |
key: ${{ runner.os }}-build-${{ env.cache-name }}-v${{ env.cln_version }} | |
- name: Compile CLN | |
env: | |
PYTHON_KEYRING_BACKEND: keyring.backends.null.Keyring | |
if: ${{ steps.cache-cln.outputs.cache-hit != 'true' }} | |
run: | | |
sudo apt-get update && sudo apt-get install gettext | |
git clone https://github.com/ElementsProject/lightning.git && cd lightning && git checkout v${{ env.cln_version }} | |
pip install --user poetry && poetry install | |
./configure --enable-developer && poetry run make | |
cln-plugin: | |
needs: cache-cln | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.9' | |
check-latest: true | |
- name: Install bitcoind | |
run: | | |
wget https://bitcoincore.org/bin/bitcoin-core-${{ env.bitcoind_version }}/bitcoin-${{ env.bitcoind_version }}-x86_64-linux-gnu.tar.gz | |
tar -xzf bitcoin-${{ env.bitcoind_version }}-x86_64-linux-gnu.tar.gz | |
ln -s $(pwd)/bitcoin-${{ env.bitcoind_version }}/bin/bitcoin* /usr/local/bin | |
- name: Load CLN cache | |
id: cache-cln | |
uses: actions/cache@v3 | |
env: | |
cache-name: cache-cln-dev | |
with: | |
path: lightning | |
key: ${{ runner.os }}-build-${{ env.cache-name }}-v${{ env.cln_version }} | |
- name: Link CLN | |
run: | | |
cd lightning && sudo make install | |
- name: Install teos and the plugin | |
run: | | |
cargo install --locked --path teos | |
cargo install --locked --path watchtower-plugin | |
- name: Add test dependencies | |
run: | | |
cd watchtower-plugin/tests | |
pip install --user poetry && poetry install | |
- name: Run tests | |
run: | | |
cd watchtower-plugin/tests | |
DEVELOPER=1 SLOW_MACHINE=1 poetry run pytest test.py --log-cli-level=INFO -s |