Compare commits
1 commit
e256fef105
...
63db4337cf
Author | SHA1 | Date | |
---|---|---|---|
63db4337cf |
3 changed files with 36 additions and 0 deletions
10
.forgejo/workflows/size-report.yml
Normal file
10
.forgejo/workflows/size-report.yml
Normal file
|
@ -0,0 +1,10 @@
|
|||
on:
|
||||
pull_request:
|
||||
jobs:
|
||||
report-size:
|
||||
runs-on: nixos
|
||||
steps:
|
||||
- uses: "https://git.salame.cl/actions/checkout@v4"
|
||||
- run: nix --version
|
||||
- name: Report Size
|
||||
run: ci-scripts/report-size.sh
|
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,4 +1,5 @@
|
|||
result
|
||||
result-*
|
||||
.direnv/
|
||||
.pre-commit-config.yaml
|
||||
# ignore vm images
|
||||
|
|
25
ci-scripts/report-size.sh
Executable file
25
ci-scripts/report-size.sh
Executable file
|
@ -0,0 +1,25 @@
|
|||
#!/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=SC2086
|
||||
nix build $packages
|
||||
# shellcheck disable=SC2086
|
||||
table=$(nix path-info --size --closure-size --human-readable \
|
||||
$packages |
|
||||
sed 's/^\(\S\+\)\(\s\+\)\(\S\+\)\(\s\+\)\(\S\+\)$/| \1\2| \3 | \4\5 |/')
|
||||
|
||||
cat <<-EOF
|
||||
| Nix Store Path | NAR Size | Closure Size |
|
||||
|----------------|---------:|-------------:|
|
||||
$table
|
||||
EOF
|
||||
}
|
||||
|
||||
if [ "$CI" = "true" ]; then
|
||||
tea login add --url "$GITHUB_SERVER_URL" --token "$GITHUB_TOKEN"
|
||||
tea pulls list
|
||||
fi
|
||||
|
||||
create_table
|
Loading…
Add table
Reference in a new issue