forked from NVIDIA-Omniverse/kit-app-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
repo.toml
130 lines (106 loc) · 4.24 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
########################################################################################################################
# Repo tool base settings
########################################################################################################################
[repo]
# Use the Kit Template repo configuration as a base. Only override things specific to the repo.
import_configs = [
"${root}/_repo/deps/repo_kit_tools/kit-template/repo.toml",
"${root}/_repo/deps/repo_kit_tools/kit-template/repo-external-app.toml",
]
# Repository Name
name = "kit-app-template"
# Disable linbuild until we know what we want to do with this.
[repo_build.docker]
enabled = false
[repo_build.fetch.pip]
# List of pip files to pip install from (in order)
files_to_pull = [
"${root}/tools/deps/pip.toml"
]
# Do not gather Python dependency licenses
licensing_enabled = false
# Do not try to publish a pip cache to S3
publish_pip_cache = false
########################################################################################################################
# Extensions precacher
########################################################################################################################
[repo_precache_exts]
# Apps to run and precache
apps = [
]
registries = [
{ name = "kit/default", url = "https://ovextensionsprod.blob.core.windows.net/exts/kit/prod/106/shared" },
{ name = "kit/sdk", url = "https://ovextensionsprod.blob.core.windows.net/exts/kit/prod/sdk/${kit_version_short}/${kit_git_hash}" },
{ name = "kit/community", url = "https://dw290v42wisod.cloudfront.net/exts/kit/community" },
]
########################################################################################################################
# Packaging
########################################################################################################################
[repo_package.packages.fat_package]
root = "_build/$${platform}/$${config}"
archive_name = "${conf:repo.name}-fat"
# omniverse_flow_version_scheme sets package name to the format:
# archive_name@{build_version}+{gitbranch}.{builder_id}.{githash}.{build_environment}.{host_platform}.{archive_format}
# e.g. [email protected]+custom-app-stuff.0.12345678.local.linux-x86_64.zip
omniverse_flow_version_scheme=true
package_per_config = true # By default we only build + package release.
append_config = true # Set to true to append release/debug config to package name.
archive_format = "zip" # We support "7z", "zip", "tar.gz", "tar.bz2"
#build_version = "${file:${config_root}/tools/VERSION.md}" # It's ignored when omniverse_flow_version_scheme is true
files = [
["**"],
]
files_exclude = [
["_*/**"],
[".*/**"],
["**/*.pdb"],
["**/*.exp"],
["baseapp/**"],
["extsbuild/**"],
["cache/**"],
["data/**"],
["logs/**"],
["apps/kit.portable"],
["**/__pycache__"],
]
"linux-x86_64".files_strip = []
[repo_package.packages.thin_package]
root = "_build/$${platform}/$${config}"
archive_name = "${conf:repo.name}-thin"
omniverse_flow_version_scheme=true
package_per_config = true
append_config = true
archive_format = "zip"
#build_version = "${file:${config_root}/tools/VERSION.md}"
files = [
["**"],
]
files_exclude = [
["_*/**"],
[".*/**"],
["**/*.pdb"],
["**/*.exp"],
["kit/**"],
["extscache/**"],
["extsbuild/**"],
["baseapp/**"],
["cache/**"],
["data/**"],
["logs/**"],
["apps/kit.portable"],
["**/__pycache__"],
]
"linux-x86_64".files_strip = []
########################################################################################################################
# Template tool configuration
########################################################################################################################
[repo_kit_template]
extension_templates_config = "templates/templates.toml"
########################################################################################################################
# Application launching configuration
########################################################################################################################
[repo_launch]
type_ordering = [
"ApplicationTemplate",
"ApplicationLayerTemplate",
]