buildtools VS dbx_build_tools

Compare buildtools vs dbx_build_tools and see what are their differences.

buildtools

A bazel BUILD file formatter and editor (by bazelbuild)
Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
buildtools dbx_build_tools
1 1
972 203
1.5% 1.5%
7.4 7.8
7 days ago 9 months ago
Go Go
Apache License 2.0 GNU General Public License v3.0 or later
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

buildtools

Posts with mentions or reviews of buildtools. We have used some of these posts to build our list of alternatives and similar projects.

dbx_build_tools

Posts with mentions or reviews of dbx_build_tools. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2021-11-06.
  • Reflecting on the Shake Build System
    3 projects | news.ycombinator.com | 6 Nov 2021
    > hermetic == sandbox which only contains declared deps

    Yes, exactly. It also can include other deps like networking. A perfect hermetic build will (for most of the build process) not have access to the network.

    > I assume bazel implements this via containers?

    Sort of. Bazel's code predates "containers" by ~6 years. Bazel is the build system used at Google (sprinkle on a large amount of asterisks here).

    > Also, IMO, this only provides a false sense of safety unless you archive absolutely everything that's inside the sandbox.

    Yes, that is what a Bazel monorepo does. You can also include your language's runtime and standard library as part of the build process. See Dropbox's repo for more details on how they do this with Python: https://github.com/dropbox/dbx_build_tools

    Some more details about what Google does are available here: https://opensource.google/docs/thirdparty/#

    Essentially, everything is built from source (more asterisks here). Since everything is built from source using Bazel you can guarantee that at a certain view of the source repository you can build a reproducible copy of all software in the repo (more asterisks).

    One other nice property is you can guarantee that all software in the repo is using a compatible version of each dep: https://opensource.google/docs/thirdparty/oneversion/

    The downside is that if you want to upgrade a library that has a breaking change this requires you update a lot of code. The upside is that doing that isn't actually that hard with the tooling available and you can guarantee that you can link together any two libraries in the repo (more asterisks) and have the build succeed without any dep version conflicts. Since you can do this some langauges with runtimes (like JVM language) can see massive speed boosts because they only need to compile changed libraries and can run a `java -cp ... your.jar` to load up deps. You can check out rules_docker for some examples of how this can be used.

What are some alternatives?

When comparing buildtools and dbx_build_tools you can also consider the following projects:

rules_proto - Bazel build rules for protobuf / gRPC (now with gazelle)

bazel-skylib - Common useful functions and rules for Bazel

bazel-watcher - Tools for building Bazel targets when source files change.

abseil-py - Abseil Common Libraries (Python)

bazel-remote - A remote cache for Bazel

rules_python - Bazel Python Rules

please - High-performance extensible build system for reproducible multi-language builds.

nixpkgs - Nix Packages collection & NixOS

rules_go - Go rules for Bazel

buildbuddy - BuildBuddy is an open source Bazel build event viewer, result store, remote cache, and remote build execution platform.