Merge pull request #399 from qowoz/review-timeout

increase nixpkgs-review timeout to 120 minutes, increase python max package rebuilds from 25 to 100
This commit is contained in:
zowoq 2024-04-28 12:15:13 +10:00 committed by GitHub
commit fc6a441992
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 3 additions and 3 deletions

View File

@ -36,7 +36,7 @@ Updates can be disabled by adding a comment to the package:
We maintain a [Skiplist](https://github.com/ryantm/nixpkgs-update/blob/main/src/Skiplist.hs) of different things not to update. It is possible your package is triggering one of the skip criteria.
Python updates are skipped if they cause more than 25 rebuilds.
Python updates are skipped if they cause more than 100 rebuilds.
### Existing Open or Draft PR

View File

@ -34,7 +34,7 @@ run ::
Text ->
Sem r Text
run cache commit =
let timeout = "45m" :: Text
let timeout = "120m" :: Text
in do
-- TODO: probably just skip running nixpkgs-review if the directory
-- already exists

View File

@ -234,4 +234,4 @@ python numPackageRebuilds derivationContents =
(not isPython || numPackageRebuilds <= maxPackageRebuild)
where
isPython = "buildPythonPackage" `T.isInfixOf` derivationContents
maxPackageRebuild = 25
maxPackageRebuild = 100