From 10abb620a8379faaa405188819ebc43724fb394b Mon Sep 17 00:00:00 2001 From: Christian Decker Date: Wed, 30 Nov 2022 13:52:51 +0100 Subject: [PATCH] gci: Clone BOLTs repository in pre-build checks --- .github/workflows/ci.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index df24c8526..523c5b84d 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -13,6 +13,7 @@ jobs: env: RUST: 1 COMPAT: 1 + BOLTDIR: /tmp/bolts strategy: fail-fast: true steps: @@ -31,6 +32,8 @@ jobs: # Export and then use pip to install into the current env poetry export -o /tmp/requirements.txt --without-hashes --with dev pip install -r /tmp/requirements.txt + # We're going to check BOLT quotes, so get the latest version + git clone https://github.com/lightning/bolts.git ../${BOLTDIR} - name: Run checks run: | ./configure