You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Typecheck is still hitting memory limits semi-regularly on periodic CI
jobs. This bumps the default parallelism down to 3 from 4 to make it
slightly less memory intensive.
Signed-off-by: hasheddan <[email protected]>
serial=flag.Bool("serial", false, "don't type check platforms in parallel (equivalent to --parallel=1)")
42
-
parallel=flag.Int("parallel", 4, "limits how many platforms can be checked in parallel. 0 means no limit.")
42
+
parallel=flag.Int("parallel", 3, "limits how many platforms can be checked in parallel. 0 means no limit.")
43
43
skipTest=flag.Bool("skip-test", false, "don't type check test code")
44
44
tags=flag.String("tags", "", "comma-separated list of build tags to apply in addition to go's defaults")
45
45
ignoreDirs=flag.String("ignore-dirs", "", "comma-separated list of directories to ignore in addition to the default hardcoded list including staging, vendor, and hidden dirs")
0 commit comments