aux-search/.forgejo/workflows/check-flake-files.yml
Christoph Heiss e5c37d1c8b
Some checks failed
Build flake-info / build-flake-info (push) Failing after 1s
Frontend: Build & Deploy to Netlify / build-and-deploy (push) Failing after 1m34s
ci: try to mostly adapt workflows
Signed-off-by: Christoph Heiss <christoph@c8h4.io>
2024-06-14 22:53:40 +02:00

55 lines
1.2 KiB
YAML

name: "Check Flake Groups"
on:
workflow_dispatch:
pull_request:
paths:
- "flakes/**.toml"
jobs:
automatic-custom-flakes-check:
runs-on: nixos-unstable
strategy:
fail-fast: true
env:
RUST_LOG: debug
steps:
- name: Checking out the repository
uses: actions/checkout@v4
- name: Enable flakes
run: |
echo 'experimental-features = nix-command flakes' >>/etc/nix/nix.conf
- name: Try importing all custom flakes
run: |
shopt -s globstar
had_error=0
for flake_group in flakes/**/*.toml
do
echo "::group::Group \"$(basename $flake_group .toml)\""
nix run --accept-flake-config .#flake-info -- --json group "$flake_group" "$(basename "$flake_group" .toml)" --report
if [[ -f "./report.txt" ]]
then
had_error=1
# sic.:
# Workaround for multi line output
report="$(< ./report.txt)"
report="${report//'%'/'%25'}"
report="${report//$'\n'/'%0A'}"
report="${report//$'\r'/'%0D'}"
echo "::error file=$flake_group::$report"
fi
echo ::endgroup::
done
exit $had_error