Skip to content

Commit

Permalink
Picking a real language to use
Browse files Browse the repository at this point in the history
  • Loading branch information
NathanDuPont committed Jul 2, 2024
1 parent 0d243ba commit 9ec57b3
Show file tree
Hide file tree
Showing 10 changed files with 431 additions and 2,868 deletions.
Empty file added .gitmodules
Empty file.
6 changes: 3 additions & 3 deletions BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@ compile_pip_requirements(

# Set up commands to build all images in the project
command(
name = "api_v2_img",
command = "//src/api/v2:tarball",
name = "api_img",
command = "//src/api:tarball",
visibility = ["//visibility:public"],
)

multirun(
name = "build_all_imgs",
commands = [
":api_v2_img",
":api_img",
],
jobs = 0,
)
Expand Down
10 changes: 10 additions & 0 deletions MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,18 @@ module(
# Project Dependencies
bazel_dep(name = "aspect_bazel_lib", version = "2.5.3")
bazel_dep(name = "aspect_rules_lint", version = "0.14.2")
bazel_dep(name = "aspect_rules_js", version = "1.41.2")
bazel_dep(name = "bazel_skylib", version = "1.4.2")
bazel_dep(name = "eigen", version = "3.4.0")
bazel_dep(name = "gazelle", version = "0.35.0")
bazel_dep(name = "hedron_compile_commands", dev_dependency = True)
git_override(
module_name = "hedron_compile_commands",
remote = "https://github.com/hedronvision/bazel-compile-commands-extractor.git",
commit = "1e08f8e0507b6b6b1f4416a9a22cf5c28beaba93",
# Replace the commit hash (above) with the latest (https://github.com/hedronvision/bazel-compile-commands-extractor/commits/main).
# Even better, set up Renovate and let it do the work for you (see "Suggestion: Updates" in the README).
)
bazel_dep(name = "rules_go", version = "0.46.0")
bazel_dep(name = "rules_multirun", version = "0.9.0")
bazel_dep(name = "platforms", version = "0.0.7")
Expand Down
Loading

0 comments on commit 9ec57b3

Please sign in to comment.