Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
168 changes: 103 additions & 65 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ cln-grpc = "0.4"
cln-rpc = "0.4"
cln-plugin = "0.4"

vls-core = "^0.12"
vls-persist = "^0.12"
vls-protocol-signer = "^0.12"
vls-protocol = "^0.12"
vls-core = "^0.13"
vls-persist = "^0.13"
vls-protocol-signer = "^0.13"
vls-protocol = "^0.13"


# Config for 'cargo dist'
Expand Down
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,8 @@ CLN_VERSIONS = \
v22.11gl1 \
v23.05gl1 \
v23.08gl1 \
v24.02gl1
v24.02gl1 \
v24.11gl1

DOCKER_OPTIONS= \
--rm \
Expand Down
14 changes: 12 additions & 2 deletions Taskfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ tasks:
- task: testing:check
- task: clnvm:check

docker-ci-check:
docker-ci-build:
cmds:
- >
docker buildx build \
Expand All @@ -47,9 +47,19 @@ tasks:
-t gltesting \
-f docker/gl-testing/Dockerfile \
.
- docker run -ti -v $(pwd):/repo gltesting task ci-check

docker-ci-check:
deps:
# - docker-ci-build
cmds:
- docker run --rm -ti -v $(pwd):/repo gltesting task ci-check

ci-build:
cmds:
- task: signerproxy:build
- task: plugin:build
clean:
dir: "."
cmds:
- cargo clean
- rm -rf .venv
Loading
Loading