Skip to content

Commit

Permalink
bump timeouts
Browse files Browse the repository at this point in the history
  • Loading branch information
zowoq committed Dec 18, 2024
1 parent 3424560 commit 7f08959
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Check.hs
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ hasVersion contents expectedVersion =

checkTestsBuild :: Text -> IO Bool
checkTestsBuild attrPath = do
let timeout = "10m"
let timeout = "30m"
let args =
[T.unpack timeout, "nix-build"]
++ nixBuildOptions
Expand Down
2 changes: 1 addition & 1 deletion src/Nix.hs
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ hasUpdateScript attrPath = do

runUpdateScript :: MonadIO m => Text -> ExceptT Text m (ExitCode, Text)
runUpdateScript attrPath = do
let timeout = "10m" :: Text
let timeout = "30m" :: Text
(exitCode, output) <-
ourReadProcessInterleaved $
TP.setStdin (TP.byteStringInput "\n") $
Expand Down
2 changes: 1 addition & 1 deletion src/NixpkgsReview.hs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ run ::
Text ->
Sem r Text
run cache commit =
let timeout = "120m" :: Text
let timeout = "180m" :: Text
in do
-- TODO: probably just skip running nixpkgs-review if the directory
-- already exists
Expand Down

0 comments on commit 7f08959

Please sign in to comment.