Compare commits
1 commit
eb79878f7d
...
36c3f568a4
Author | SHA1 | Date | |
---|---|---|---|
36c3f568a4 |
3 changed files with 31 additions and 2 deletions
26
.forgejo/workflows/check.yml
Normal file
26
.forgejo/workflows/check.yml
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
jobs:
|
||||||
|
check:
|
||||||
|
runs-on: nixos
|
||||||
|
needs: build
|
||||||
|
steps:
|
||||||
|
- uses: "https://code.forgejo.org/actions/checkout@v4"
|
||||||
|
- run: nix --version
|
||||||
|
- name: Run Checks
|
||||||
|
run: nix flake check --keep-going --verbose
|
||||||
|
build:
|
||||||
|
runs-on: nixos
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
target:
|
||||||
|
- audiomenu
|
||||||
|
- docs
|
||||||
|
- jpassmenu
|
||||||
|
- nixosConfigurations.vm.config.system.build.toplevel
|
||||||
|
- nvim
|
||||||
|
steps:
|
||||||
|
- uses: "https://code.forgejo.org/actions/checkout@v4"
|
||||||
|
- run: nix --version
|
||||||
|
- name: "Build ${{ matrix.target }}"
|
||||||
|
run: nix build --print-build-logs '.#${{ matrix.target }}'
|
|
@ -3,6 +3,7 @@ on:
|
||||||
jobs:
|
jobs:
|
||||||
report-size:
|
report-size:
|
||||||
runs-on: nixos
|
runs-on: nixos
|
||||||
|
needs: build
|
||||||
steps:
|
steps:
|
||||||
- uses: "https://git.salame.cl/actions/checkout@v4"
|
- uses: "https://git.salame.cl/actions/checkout@v4"
|
||||||
- run: nix --version
|
- run: nix --version
|
||||||
|
|
|
@ -26,8 +26,9 @@ package_size_table() {
|
||||||
for package in $packages; do
|
for package in $packages; do
|
||||||
echo "Building $package" >&2
|
echo "Building $package" >&2
|
||||||
path=$(nix build --print-out-paths ".#$package" 2>/dev/null)
|
path=$(nix build --print-out-paths ".#$package" 2>/dev/null)
|
||||||
|
echo "Calculating size of $package" >&2
|
||||||
row=$(nix path-info --size --closure-size --human-readable "$path" 2>/dev/null |
|
row=$(nix path-info --size --closure-size --human-readable "$path" 2>/dev/null |
|
||||||
sed "s/^\(\S\+\)\(\s\+\)\(\S\+\)\(\s\+\)\(\S\+\)$/| $package | \3 | \4\5 |/")
|
sed "s/^\(\S\+\)\(\s\+\)\(\S\+\)\(\s\+\)\(\S\+\)$/| \`$package\` | \3 | \5 |/")
|
||||||
table="$table$row
|
table="$table$row
|
||||||
"
|
"
|
||||||
done
|
done
|
||||||
|
@ -42,8 +43,9 @@ configuration_size_table() {
|
||||||
for config in $configurations; do
|
for config in $configurations; do
|
||||||
echo "Building $config" >&2
|
echo "Building $config" >&2
|
||||||
path=$(nix build --print-out-paths ".#nixosConfigurations.$config.config.system.build.toplevel" 2>/dev/null)
|
path=$(nix build --print-out-paths ".#nixosConfigurations.$config.config.system.build.toplevel" 2>/dev/null)
|
||||||
|
echo "Calculating size of $config" >&2
|
||||||
row=$(nix path-info --size --closure-size --human-readable "$path" 2>/dev/null |
|
row=$(nix path-info --size --closure-size --human-readable "$path" 2>/dev/null |
|
||||||
sed "s/^\(\S\+\)\(\s\+\)\(\S\+\)\(\s\+\)\(\S\+\)$/| $config | \3 | \4 |/")
|
sed "s/^\(\S\+\)\(\s\+\)\(\S\+\)\(\s\+\)\(\S\+\)$/| \`$config\` | \3 | \5 |/")
|
||||||
table="$table$row
|
table="$table$row
|
||||||
"
|
"
|
||||||
done
|
done
|
||||||
|
|
Loading…
Add table
Reference in a new issue