-
Notifications
You must be signed in to change notification settings - Fork 256
/
Copy pathrepo.toml
83 lines (58 loc) · 2.01 KB
/
repo.toml
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
########################################################################################################################
# Repo tool base settings
########################################################################################################################
[repo]
# Repository Name
name = "warp"
extra_tool_paths = [
"${root}/_build/kit-deps/kit-kernel/dev",
]
import_configs = [
"${root}/_repo/deps/repo_kit_tools/kit-template/repo.toml",
]
########################################################################################################################
# Build tool setup
########################################################################################################################
[repo_build]
# List of packman projects to pull (in order)
fetch.packman_host_files_to_pull = [
"${root}/deps/host-deps.packman.xml",
]
fetch.packman_target_files_to_pull = [
"${root}/deps/target-deps.packman.xml",
]
# Extensions precache
fetch.after_pull_commands = [
]
[repo_build_number]
enabled = true
########################################################################################################################
# Extensions publisher
########################################################################################################################
[repo_publish_exts]
kit_path = "${root}/_build/kit-deps/kit-kernel/kit${exe_ext}"
ext_folders = [
"${root}/_build/${platform_target}/${config}/exts"
]
exts.include = [
"omni.warp",
"omni.warp.core",
]
configs = ["release"]
platforms = ["windows-x86_64", "linux-x86_64"]
########################################################################################################################
# Public API checker
########################################################################################################################
[repo_checkapi]
enabled = true
[repo_checkapi.python]
exts.folders = [
"${root}/exts"
]
skip_packages = [
"_extension",
"templates",
]
exts.exclude = [
"omni.warp.core",
]