1
0
mirror of https://github.com/arduino/library-registry.git synced 2025-07-19 08:03:16 +03:00
per1234 492cd278fe Detect unused dependency license metadata files
The "Check Go Dependencies" GitHub Actions workflow checks for dependencies with incompatible or unapproved license
types.

The dependency license metadata consumed by the "Licensed" tool is cached in the project repository, in a dedicated file
for each dependency.

The `check-cache` job of the workflow checks whether that cache is in sync with the project's current dependencies. It
does this by using the "Licensed" tool to update the cache and then a `git diff` command to check whether that resulted
in any changes (which would indicate it is out of sync).

Out of sync states could result from any of three distinct conditions:

- Missing metadata file
- Incorrect metadata file contents
- Superfluous metadata file

An incorrectly configured `git diff` command previously caused the last of these to be missed.

My first take at this system was simply using `git diff --exit-code` alone. That detects the last two, but misses the
first. I added the `git add --intent-to-add .` command to detect added files, but didn't realize that it caused the last
to be missed.

Superfluous files in the dependency license metadata cache won't actually interfere with its intended functionality, but
it is still important to avoid an accumulation of unused files.

The new commands will catch all three of the possible out of sync conditions by staging all changes that result from
the metadata cache update to the repository and then comparing those against the `HEAD` commit.

I considered an alternative approach which works just as well as the chosen one:

```
git add .
git diff --exit-code HEAD
```

However, I feel that the `--cached` flag makes the `git diff` command more self-explanatory.
2022-05-02 22:40:37 -07:00
2021-06-01 07:37:19 -07:00
2022-04-25 02:24:02 +00:00
2022-04-25 02:24:02 +00:00
2022-05-02 19:47:57 +00:00

Arduino Library Manager list

Check Registry status Test Integration status Check Go status Check Python status Check General Formatting status Check Prettier Formatting status Check Taskfiles status Check Workflows status Check YAML status Check License status Check Go Dependencies status

This branch contains the generated source file for the Arduino Library Manager index. If you want to add a library to the Arduino Library Manager index, please follow these instructions:

https://github.com/arduino/library-registry#adding-a-library-to-library-manager

Description
No description provided
Readme 82 MiB
Languages
Markdown 100%