Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/license-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
key: check-license-${{ runner.os }}

- name: Install cargo-about
run: cargo install cargo-about
run: cargo install cargo-about --features=cli

- name: Generate licenses
run: make licenses
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ internalapi/
# Files generated by tests
results.xml
logs/
THIRD_PARTY_LICENSES.html

# clangd and compilation database
.cache/
Expand Down
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ image:
licenses:THIRD_PARTY_LICENSES.html

THIRD_PARTY_LICENSES.html:Cargo.lock
cargo install cargo-about
$(if $(shell command -v cargo-about),,$(error cargo-about not found, you can install it with 'cargo install cargo-about --features=cli'))
cargo about generate --format handlebars -o THIRD_PARTY_LICENSES.html about_html.hbs

integration-tests:
Expand All @@ -34,6 +34,7 @@ performance-tests:

clean:
make -C tests clean
rm -f THIRD_PARTY_LICENSES.html

format-check:
cargo fmt --check
Expand Down
Loading