mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 09:54:16 +01:00
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:
parent
6a756256c0
commit
4301030a12
2
.github/workflows/ci.yaml
vendored
2
.github/workflows/ci.yaml
vendored
@ -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
|
||||
|
@ -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
|
||||
|
@ -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 \
|
||||
|
@ -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 \
|
||||
|
Loading…
Reference in New Issue
Block a user