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: 2 additions & 0 deletions images/ci-tools/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,8 @@ RUN apt-get update \
git \
gnupg \
xmlstarlet \
zip \
unzip \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*

Expand Down
2 changes: 2 additions & 0 deletions images/ci-tools/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,11 @@ CI pipelines. Published to GHCR at `ghcr.io/knight-owl-dev/ci-tools`.
| [shellcheck](https://github.com/koalaman/shellcheck) | Shell script linting |
| [shfmt](https://github.com/mvdan/sh) | Shell script formatting |
| [stylelint](https://github.com/stylelint/stylelint) | CSS linting |
| [unzip](https://infozip.sourceforge.net) | Archive extraction for archive-format test fixtures (ODT/DOCX/EPUB) |
| validate-action-pins | GitHub Actions SHA pin verification |
| [xmlstarlet](https://xmlstar.sourceforge.net) | XML querying and editing |
| [yq](https://github.com/mikefarah/yq) | YAML/JSON/XML processing |
| [zip](https://infozip.sourceforge.net) | Archive assembly for archive-format test fixtures (ODT/DOCX/EPUB) |

Pinned versions and checksums are tracked in
[`versions.lock`](versions.lock).
Expand Down
2 changes: 2 additions & 0 deletions scripts/ci-tools/verify.sh
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,8 @@ check "gpg" "" gpg --version
check "make" "" make --version
check "parallel" "" parallel --version
check "xmlstarlet" "" xmlstarlet --version
check "zip" "" zip -v
check "unzip" "" unzip -v
check "locale-en-us" "" bash -c "locale -a | grep -q en_US.utf8"
check "lc-all-default" "C" printenv LC_ALL
verify_exit