[bzlmod] Migrate to bzlmod.

Switch from WORKSPACE to MODULE.

Bug: 308624902
Change-Id: I0ac262c7955732605b3b0ea6f6aca57679fb34f9
Reviewed-on: https://fuchsia-review.googlesource.com/c/template/driver/+/1529417
Reviewed-by: Chase Latta <chaselatta@google.com>
19 files changed
tree: cf563e41dc841563d4d5c3192017494d0105fdca
  1. manifests/
  2. scripts/
  3. third_party/
  4. tools/
  5. .bazelrc
  6. .gitignore
  7. .gitmodules
  8. _rollers.textproto
  9. AUTHORS
  10. BUILD.bazel
  11. CONTRIBUTING.md
  12. fuchsia_env.toml
  13. LICENSE
  14. MODULE.bazel
  15. MODULE.bazel.lock
  16. OWNERS
  17. PATENTS
  18. README.md
  19. shac.star
  20. shac.textproto
README.md

Fuchsia <change_me> Driver Repository

<change_me: This repository is a template that we will use when creating new driver repositories for Fuchsia>.

Template repository is located in: https://fuchsia.googlesource.com/template/driver/

Getting Started

To perform an initial bootstrap, execute the following:

  1. In a terminal, clone the repository:

    git clone https://fuchsia.googlesource.com/drivers/<change_me>
    
  2. Change to that directory:

    cd <change_me>
    
  3. Fetch all git submodules:

    git submodule init && git submodule update --recursive
    
  4. Bootstrap the build environment:

    scripts/bootstrap.sh
    
  5. Fetch and build the SDK:

    tools/bazel build @fuchsia_sdk//:fuchsia_toolchain_sdk
    

See the getting started guide for more info.

Building And Testing Driver

Run the full test-suite with:

tools/bazel test :tests

Run only the <change_me> driver tests with:

tools/bazel test <change_me>:<fuchsia_unittest_package_name>