| commit | c4711a37e73d80392b0e826b928787ba12123ef0 | [log] [tgz] |
|---|---|---|
| author | Darren Chan <chandarren@google.com> | Tue Sep 10 21:59:47 2024 +0000 |
| committer | Darren Chan <chandarren@google.com> | Tue Sep 10 21:59:47 2024 +0000 |
| tree | da5a2dd89c805dbc6d1c1c64e467451b7ef55d72 | |
| parent | 0a80b852091de8c4db1da62abf9a1fb0d51fd763 [diff] |
[template] Update dependencies. Realize https://fxrev.dev/1116318. Also update `manifests/bazel_sdk.*`. Change-Id: I9529432404ee23909e661075f4e7e8c2506f0bce Reviewed-on: https://fuchsia-review.googlesource.com/c/template/driver/+/1116319 Reviewed-by: Jiaming Li <lijiaming@google.com>
<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/
To perform an initial bootstrap, execute the following:
In a terminal, clone the repository:
git clone https://fuchsia.googlesource.com/drivers/<change_me>
Change to that directory:
cd <change_me>
Fetch all git submodules:
git submodule init && git submodule update --recursive
Bootstrap the build environment:
scripts/bootstrap.sh
Fetch and build the SDK:
tools/bazel build @fuchsia_sdk//:fuchsia_toolchain_sdk
See the getting started guide for more info.
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>