1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-11-18 08:19:35 +01:00

Add retry to the eval steps, split out m since it takes a while on its own

This commit is contained in:
Graham Christensen 2025-06-13 14:58:00 -04:00
parent c7d80871ac
commit f764c9eae3

View file

@ -112,7 +112,8 @@ jobs:
glob:
- "[0-d]*"
- "[e-l]*"
- "[m-r]*"
- "[m]*"
- "[n-r]*"
- "[s-z]*"
steps:
- name: Checkout nix
@ -136,7 +137,12 @@ jobs:
run: |
nix build -L --out-link ./new-nix
export PATH=$(pwd)/new-nix/bin:$PATH
flake-regressions/eval-all.sh
if ! flake-regressions/eval-all.sh; then
echo "Some failed, trying again"
printf "\n\n\n\n\n\n\n\n"
flake-regressions/eval-all.sh
fi
manual:
if: github.event_name != 'merge_group'