Compare commits
1 commit
e256fef105
...
63db4337cf
Author | SHA1 | Date | |
---|---|---|---|
63db4337cf |
2 changed files with 12 additions and 4 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,4 +1,5 @@
|
||||||
result
|
result
|
||||||
|
result-*
|
||||||
.direnv/
|
.direnv/
|
||||||
.pre-commit-config.yaml
|
.pre-commit-config.yaml
|
||||||
# ignore vm images
|
# ignore vm images
|
||||||
|
|
|
@ -1,8 +1,13 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
create_table() {
|
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
|
# 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 \
|
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 |/')
|
sed 's/^\(\S\+\)\(\s\+\)\(\S\+\)\(\s\+\)\(\S\+\)$/| \1\2| \3 | \4\5 |/')
|
||||||
|
|
||||||
cat <<-EOF
|
cat <<-EOF
|
||||||
|
@ -12,7 +17,9 @@ create_table() {
|
||||||
EOF
|
EOF
|
||||||
}
|
}
|
||||||
|
|
||||||
tea login add --url "$GITHUB_SERVER_URL" --token "$GITHUB_TOKEN"
|
if [ "$CI" = "true" ]; then
|
||||||
tea pulls list
|
tea login add --url "$GITHUB_SERVER_URL" --token "$GITHUB_TOKEN"
|
||||||
|
tea pulls list
|
||||||
|
fi
|
||||||
|
|
||||||
create_table
|
create_table
|
||||||
|
|
Loading…
Add table
Reference in a new issue