Compare commits

..

1 commit

Author SHA1 Message Date
63db4337cf
wip: report package sizes
All checks were successful
/ check (push) Successful in 48s
/ build (audiomenu) (push) Successful in 2s
/ build (docs) (push) Successful in 3s
/ build (jpassmenu) (push) Successful in 2s
/ build (nixosConfigurations.vm.config.system.build.toplevel) (push) Successful in 19s
/ build (nvim) (push) Successful in 10s
/ report-size (pull_request) Successful in 29s
Added as a comment to the current pull request
2024-12-15 00:45:58 +01:00
2 changed files with 12 additions and 4 deletions

1
.gitignore vendored
View file

@ -1,4 +1,5 @@
result
result-*
.direnv/
.pre-commit-config.yaml
# ignore vm images

View file

@ -1,8 +1,13 @@
#!/bin/sh
create_table() {
packages=$(nix flake show --json 2>/dev/null | jq --raw-output '.packages."x86_64-linux" | ".#" + keys[]')
# we want to split the words as each of them is a different installable
# shellcheck disable=SC2046
# shellcheck disable=SC2086
nix build $packages
# shellcheck disable=SC2086
table=$(nix path-info --size --closure-size --human-readable \
$(nix flake show --json 2>/dev/null | jq --raw-output '.packages."x86_64-linux" | ".#" + keys[]') |
$packages |
sed 's/^\(\S\+\)\(\s\+\)\(\S\+\)\(\s\+\)\(\S\+\)$/| \1\2| \3 | \4\5 |/')
cat <<-EOF
@ -12,7 +17,9 @@ create_table() {
EOF
}
tea login add --url "$GITHUB_SERVER_URL" --token "$GITHUB_TOKEN"
tea pulls list
if [ "$CI" = "true" ]; then
tea login add --url "$GITHUB_SERVER_URL" --token "$GITHUB_TOKEN"
tea pulls list
fi
create_table