-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathTaskfile.yml
50 lines (41 loc) · 1007 Bytes
/
Taskfile.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
version: '3'
includes:
clnvm:
taskfile: "libs/cln-version-manager/.tasks.yml"
dir: "libs/cln-version-manager/"
clientpy:
taskfile: "libs/gl-client-py/.tasks.yml"
dir: "libs/gl-client-py/"
docker:
taskfile: "docker/.tasks.yml"
dir: "."
plugin:
taskfile: "libs/gl-plugin/.tasks.yml"
dir: "."
signerproxy:
taskfile: "libs/gl-signerproxy/.tasks.yml"
dir: "."
tasks:
ci-check:
deps:
- ci-build
cmds:
- task: clientpy:check
- task: clnvm:check
docker-ci-check:
cmds:
- >
docker buildx build \
--load \
--build-arg DOCKER_USER=$(whoami) \
--build-arg UID=$(id -u) \
--build-arg GID=$(id -g) \
--build-arg GL_TESTING_IGNORE_HASH=1 \
-t gltesting \
-f docker/gl-testing/Dockerfile \
.
- docker run -ti -v $(pwd):/repo gltesting task ci-check
ci-build:
cmds:
- task: signerproxy:build
- task: plugin:build