Skip to content

stackb/bazel-aquery-differ

Folders and files

NameName
Last commit message
Last commit date

Latest commit

33afed0 · Jan 31, 2023

History

18 Commits
Dec 24, 2022
Dec 24, 2022
Dec 24, 2022
Dec 25, 2022
Dec 23, 2022
Dec 22, 2022
Dec 22, 2022
Dec 23, 2022
Dec 23, 2022
Jan 31, 2023
Dec 23, 2022
Dec 23, 2022
Dec 23, 2022
Dec 23, 2022
Dec 22, 2022
Dec 22, 2022
Dec 22, 2022

Repository files navigation

CI

bazel-aquery-differ

This is a port of https://github.com/bazelbuild/bazel/blob/master/tools/aquery_differ/aquery_differ.py to golang.

Installation

Download and unzip a release artifact, or clone and bazel build //cmd/aquerydiff.

Usage

aquerydiff --before <BEFORE_FILE> --after <AFTER_FILE> --report_dir <REPORT_DIR>

You can generate the <BEFORE_FILE> (and <AFTER_FILE>) using:

bazel aquery //pkg:target-name --output jsonproto > before.json
bazel aquery //pkg:target-name --output textproto > before.textproto
bazel aquery //pkg:target-name --output proto > before.pb

The file extensions are relevant; the proto decoder will be protojson if .json, prototext if .textproto and proto otherwise.

An HTML report and accessory files will be written to the given --report_dir, which you could serve as follows:

(cd <REPORT_DIR> && python3 -m http.server 8000) &

Report will look something like:

image