conan upload¶
使用此命令将配方和二进制文件上传到 Conan 仓库。有关如何使用 Conan 仓库的更多信息,请查看专用章节。
$ conan upload -h
usage: conan upload [-h] [-f FORMAT] [--out-file OUT_FILE]
[-v [{quiet,error,warning,notice,status,verbose,debug,v,trace,vv}]]
[-cc CORE_CONF] [-p PACKAGE_QUERY] -r REMOTE
[--only-recipe] [--force] [--check] [-c] [--dry-run]
[-l LIST] [-m METADATA]
[pattern]
Upload packages to a remote.
By default, all the matching references are uploaded (all revisions).
By default, if a recipe reference is specified, it will upload all the revisions for all the
binary packages, unless --only-recipe is specified. You can use the "latest" placeholder at the
"reference" argument to specify the latest revision of the recipe or the package.
positional arguments:
pattern A pattern in the form
'pkg/version#revision:package_id#revision', e.g:
"zlib/1.2.13:*" means all binaries for zlib/1.2.13. If
revision is not specified, it is assumed latest one.
options:
-h, --help show this help message and exit
-f FORMAT, --format FORMAT
Select the output format: json
--out-file OUT_FILE Write the output of the command to the specified file
instead of stdout.
-v [{quiet,error,warning,notice,status,verbose,debug,v,trace,vv}]
Level of detail of the output. Valid options from less
verbose to more verbose: -vquiet, -verror, -vwarning,
-vnotice, -vstatus, -v or -vverbose, -vv or -vdebug,
-vvv or -vtrace
-cc CORE_CONF, --core-conf CORE_CONF
Define core configuration, overwriting global.conf
values. E.g.: -cc core:non_interactive=True
-p PACKAGE_QUERY, --package-query PACKAGE_QUERY
Only upload packages matching a specific query. e.g:
os=Windows AND (arch=x86 OR compiler=gcc)
-r REMOTE, --remote REMOTE
Upload to this specific remote
--only-recipe Upload only the recipe/s, not the binary packages.
--force Force the upload of the artifacts even if the revision
already exists in the server
--check Perform an integrity check, using the manifests,
before upload
-c, --confirm Upload all matching recipes without confirmation
--dry-run Do not execute the real upload (experimental)
-l LIST, --list LIST Package list file
-m METADATA, --metadata METADATA
Upload the metadata, even if the package is already in
the server and not uploaded
conan upload 命令可以将包上传到由 -r=myremote 参数指定的 1 个服务器仓库。
它有两种可能的互斥输入:- conan upload <pattern> 基于模式匹配的配方,模式类似于 conan list <pattern>。 - conan upload --list=<pkglist> 将上传 pkglist json 文件中指定的工件。
如果指定了 --format=json 格式化程序,结果将是与 Conan 其他命令兼容的“PackageList”,例如 conan remove 命令,因此可以使用生成的 json 文件连接不同的命令。生成的“PackageList”还包括每个文件已上传或将要上传的 URL,为自动化或检查目的提供额外的上下文。请参阅包列表示例。
--dry-run 参数将准备上传包,必要时压缩 zip 文件,检查服务器以查看需要上传的内容以及服务器中已有的内容,但它不会执行实际上传。
使用 core.upload:parallel 配置,可以并行上传包。默认情况下,或设置为小于 2 的值时,将不会进行并行化,任何其他值将是使用的并行线程数。