mirror of
https://github.com/github/codeql.git
synced 2025-12-16 00:33:11 +01:00
We've been observing some performance issues using crate_universe on CI. Therefore, we're moving to vendor the auto-generated BUILD files in our repository. This should provide a nice speed boost, while getting rid of the complexity of the "rust cache" job we've been using when we had a lot of git dependencies. This PR includes a vendor script, and I'll put up a CI job internally that runs that vendor script on Cargo.toml and Cargo.lock changes, to check that the vendored files are in sync.
35 lines
1.1 KiB
Python
35 lines
1.1 KiB
Python
load("@rules_rust//crate_universe:defs.bzl", "crates_vendor")
|
|
|
|
# The targets in this file re-do the vendoring of the rust cargo dependencies. Use the update_cargo_deps.sh script to run the targets, and do all the necessary work around vendoring.
|
|
crates_vendor(
|
|
name = "vendor_tree_sitter_extractors",
|
|
cargo_lockfile = "//:Cargo.lock",
|
|
generate_build_scripts = True,
|
|
manifests = [
|
|
"//:Cargo.toml",
|
|
"//ruby/extractor:Cargo.toml",
|
|
"//rust/extractor:Cargo.toml",
|
|
"//rust/extractor/macros:Cargo.toml",
|
|
"//rust/ast-generator:Cargo.toml",
|
|
"//shared/tree-sitter-extractor:Cargo.toml",
|
|
],
|
|
mode = "remote",
|
|
repository_name = "vendor",
|
|
tags = ["manual"],
|
|
vendor_path = "tree_sitter_extractors_deps",
|
|
)
|
|
|
|
crates_vendor(
|
|
name = "vendor_py_deps",
|
|
cargo_lockfile = "//python/extractor/tsg-python:Cargo.lock",
|
|
generate_build_scripts = True,
|
|
manifests = [
|
|
"//python/extractor/tsg-python:Cargo.toml",
|
|
"//python/extractor/tsg-python/tsp:Cargo.toml",
|
|
],
|
|
mode = "remote",
|
|
repository_name = "vendor",
|
|
tags = ["manual"],
|
|
vendor_path = "py_deps",
|
|
)
|