Skip to content

Commit cdce71f

Browse files
committed
ci: Fix some more minor things
1 parent 389e0af commit cdce71f

File tree

4 files changed

+29
-18
lines changed

4 files changed

+29
-18
lines changed

Taskfile.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,20 @@ includes:
1313
taskfile: "docker/.tasks.yml"
1414
dir: "."
1515

16+
plugin:
17+
taskfile: "libs/gl-plugin/.tasks.yml"
18+
dir: "."
19+
20+
signerproxy:
21+
taskfile: "libs/gl-signerproxy/.tasks.yml"
22+
dir: "."
23+
1624
tasks:
1725

1826
ci-check:
1927
deps:
28+
- task: signerproxy:build
29+
- task: plugin:build
2030
- task: clientpy:check
2131
- task: clnvm:check
2232

libs/cln-version-manager/pyproject.toml

Lines changed: 7 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -8,24 +8,9 @@ authors = [
88
{name = "Christian Decker", email = "[email protected]"},
99
{name = "Erik De Smedt", email = "[email protected]"},
1010
]
11-
12-
[tool.poetry.dependencies]
13-
python = "^3.8"
14-
requests = "^2"
15-
click = "^8"
16-
17-
[tool.poetry.group.dev.dependencies]
18-
types-requests = "^2.31"
19-
pytest = "^8"
20-
mypy = "^1.8.0"
21-
types-click = "^7"
22-
black = "^24.2.0"
23-
24-
[tool.poetry.group.lsp_ide.dependencies]
25-
python-lsp-server = "^1.10.0"
26-
27-
[tool.poetry.scripts]
28-
clnvm = "clnvm.cli:run"
11+
dependencies = [
12+
"requests>=2.32.3",
13+
]
2914

3015
[build-system]
3116
requires = ["hatchling"]
@@ -34,10 +19,14 @@ build-backend = "hatchling.build"
3419
[dependency-groups]
3520
dev = [
3621
"mypy>=1.14.1",
22+
"pytest>=7.4.4",
3723
"types-requests>=2.31.0.6",
3824
]
3925

4026
[tool.hatch.build]
4127
include = [
4228
"clnvm",
4329
]
30+
31+
[project.scripts]
32+
hello = "clnvm.cli:run"

libs/gl-plugin/.tasks.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
version: '3'
2+
3+
tasks:
4+
build:
5+
cmds:
6+
- cargo build

libs/gl-signerproxy/.tasks.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
version: '3'
2+
3+
tasks:
4+
build:
5+
cmds:
6+
- cargo build

0 commit comments

Comments
 (0)