1
0
Fork 0

Make builds concurrent

This commit is contained in:
Malte Brandy 2020-06-26 18:59:11 +02:00
parent 62ad1477a3
commit f44d849ca5
No known key found for this signature in database
GPG key ID: 226A2D41EF5378C9

View file

@ -61,8 +61,9 @@ in {
git "-C" repoDir "config" "user.name" "maralorn (nix-auto-updater)"
git "-C" repoDir "commit" "-am" "Update dependencies with niv"
git "-C" repoDir "push" "-f" "origin" "master:version-bump"
mapM_ (test_system_config repoDir) ${self.haskellList systems}
mapM_ (test_home_config repoDir) ${self.haskellList homes}
concurrently
(mapConcurrentlyM_ (test_system_config repoDir) ${self.haskellList systems})
(mapConcurrentlyM_ (test_home_config repoDir) ${self.haskellList homes})
when changed $ do
git "-C" repoDir "push" "origin" "master:master"
'';