plugins/clnrest: Updated clnrest install command in Docker images and CI

We do not need explicit clnrest dependencies installation for clnrest
because `poetry install` will also install clnrest libraries.
This commit is contained in:
ShahanaFarooqui 2023-09-08 15:56:52 -07:00 committed by Rusty Russell
parent 6a756256c0
commit 4301030a12
4 changed files with 0 additions and 5 deletions

View File

@ -54,8 +54,6 @@ 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
# Make sure we have clnrest requirements, for check-manpages
pip install -r plugins/clnrest/requirements.txt
# We're going to check BOLT quotes, so get the latest version
git clone https://github.com/lightning/bolts.git ../${BOLTDIR}
- name: Configure

View File

@ -23,7 +23,6 @@ pip3 install --upgrade pip
pip3 install --user poetry
poetry export --dev --without-hashes -o requirements.txt
pip3 install -r requirements.txt
pip3 install -r plugins/clnrest/requirements.txt
git clone https://github.com/lightning/bolts.git ../bolts
git submodule update --init --recursive

View File

@ -60,7 +60,6 @@ WORKDIR /build
CMD poetry export -o requirements.txt --without-hashes \
&& pip install -r requirements.txt \
&& pip install -r plugins/clnrest/requirements.txt \
&& mkdir -p /repro \
&& cd /repro \
&& unzip /build/release/*.zip \

View File

@ -61,7 +61,6 @@ WORKDIR /build
CMD poetry export -o requirements.txt --without-hashes \
&& pip install -r requirements.txt \
&& pip install -r plugins/clnrest/requirements.txt \
&& mkdir -p /repro \
&& cd /repro \
&& unzip /build/release/*.zip \