-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathTaskfile.dist.yml
More file actions
59 lines (50 loc) · 1.59 KB
/
Taskfile.dist.yml
File metadata and controls
59 lines (50 loc) · 1.59 KB
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
51
52
53
54
55
56
57
58
59
version: '3'
vars:
USER_REL_PATH:
sh: python3 -c "import os,sys;print(os.path.relpath('{{.USER_WORKING_DIR}}'))"
ROOT_DIR:
sh: pwd
includes:
env:
taskfile: tools/taskfiles/taskfile_env.yml
dir: tools
gen:
taskfile: tools/taskfiles/taskfile_gen.yml
dir: tools
release:
taskfile: tools/taskfiles/taskfile_release.yaml
dir: tools
e2e:
taskfile: tools/e2e/Taskfile.yaml
dir: tools/e2e
dev:
taskfile: tools/taskfiles/taskfile_dev.yml
vars:
PROJECT_ROOT_PATH: '{{.ROOT_DIR}}'
PYPROJECT_TOML_PATH: '{{.ROOT_DIR}}/metapkg/pyproject.toml'
METAPKG_DIR: '{{.ROOT_DIR}}/metapkg'
DEFAULT_VENV_PATH: '{{.ROOT_DIR}}/metapkg/.venv'
LINTERS_PYPROJECT_TOML_PATH: '{{.ROOT_DIR}}/pyproject.toml'
EXCLUDE_LIB_PATHS: |
{{.ROOT_DIR}}
{{.ROOT_DIR}}/metapkg
{{.ROOT_DIR}}/terrarium/bi_ci/bi_ci_tests/unit/resources
{{.ROOT_DIR}}/terrarium/dl_repmanager
{{.ROOT_DIR}}/tools/cookiecutter/templates/.*
EXCLUDE_TOML_SORT: |
{{.ROOT_DIR}}/tools/cookiecutter/templates/.*
EXCLUDE_SORT_ALL: |
{{.ROOT_DIR}}/tools/cookiecutter/templates/.*
{{.ROOT_DIR}}/metapkg/.*
{{.ROOT_DIR}}/terrarium/dl_repmanager/.venv/.*
PARENT_BRANCH: '{{.PARENT_BRANCH | default "main"}}'
cc:
taskfile: tools/cookiecutter/Taskfile.yaml
optional: true
vars:
VENV_PATH: '{{.ROOT_DIR}}/metapkg/.venv'
PROJECT_ROOT_PATH: '{{.ROOT_DIR}}'
METAPKG_FILE: '{{.ROOT_DIR}}/metapkg/pyproject.toml'
ops:
taskfile: tools/taskfiles/taskfile_ops.yml
dir: tools