aboutsummaryrefslogtreecommitdiff
path: root/Gopkg.lock
AgeCommit message (Collapse)AuthorFilesLines
2020-02-18chore(mod): add go.modHEADv0.3.0masterLibravatar Terin Stock1-27/+0
2018-01-13feat(main): implement []string flag valuerLibravatar Terin Stock1-1/+7
Implement flag.Value to automnatically split strings into an array at their spaces. Change-Id: Ia9139e23d74a30acfc74cb65935bb7fc2b322aec
2017-12-15feat: replace parallel with a semaphoreLibravatar Terin Stock1-4/+10
2017-07-14feat(main): run jobs in parallelLibravatar Terin Stock1-0/+15
Ons systems with multiple CPUs, support running build jobs in parallel. This is currently a naive implementation, which only supports running `runtime.NumCPU()` jobs, with no additional configuration.