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:
parent
c7d80871ac
commit
f764c9eae3
1 changed files with 8 additions and 2 deletions
10
.github/workflows/build.yml
vendored
10
.github/workflows/build.yml
vendored
|
|
@ -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'
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue