diff options
author | Paul Cristian Sarbu <paul.cristian.sarbu@huawei.com> | 2022-06-21 11:08:25 +0200 |
---|---|---|
committer | Paul Cristian Sarbu <paul.cristian.sarbu@huawei.com> | 2022-06-23 16:11:51 +0200 |
commit | 8ff466f8ee444d22ec31d679c616459b7c2bf71b (patch) | |
tree | ded2b2bdf482e6505e9c019de55f49e12e6bd51c | |
parent | 43a719d87ef57566393f1dafa9419a978e66954f (diff) | |
download | justbuild-8ff466f8ee444d22ec31d679c616459b7c2bf71b.tar.gz |
Add distdir repo to just config and its targets file
-rw-r--r-- | etc/import/TARGETS.distfiles | 6 | ||||
-rw-r--r-- | etc/repos.json | 26 |
2 files changed, 32 insertions, 0 deletions
diff --git a/etc/import/TARGETS.distfiles b/etc/import/TARGETS.distfiles new file mode 100644 index 00000000..467215f3 --- /dev/null +++ b/etc/import/TARGETS.distfiles @@ -0,0 +1,6 @@ +{ "distdir": + { "type": "install" + , "tainted": ["test"] + , "dirs": [[["TREE", null, "."], "distdir"]] + } +} diff --git a/etc/repos.json b/etc/repos.json index 4054aeac..92d1b787 100644 --- a/etc/repos.json +++ b/etc/repos.json @@ -3,6 +3,7 @@ { "repository": {"type": "file", "path": "."} , "bindings": { "rules": "rules" + , "just-distfiles": "just-distfiles" , "gsl-lite": "gsl-lite" , "cli11": "cli11" , "json": "json" @@ -16,6 +17,31 @@ } , "bootstrap": {"link": ["-lpthread"]} } + , "just-distfiles": + { "repository": + { "type": "distdir" + , "repositories": + [ "gsl-lite" + , "cli11" + , "json" + , "fmt" + , "ssl" + , "protobuf" + , "bazel_remote_apis" + , "google_apis" + , "upb" + , "com_google_absl" + , "zlib" + , "re2" + , "com_github_cares_cares" + , "com_github_grpc_grpc" + , "com_github_libgit2_libgit2" + , "catch2" + ] + } + , "target_root": "import targets" + , "target_file_name": "TARGETS.distfiles" + } , "defaults": { "repository": {"type": "file", "path": "etc/defaults", "pragma": {"to_git": true}} |