diff options
author | 2017-07-14 16:38:48 -0600 | |
---|---|---|
committer | 2017-07-14 23:38:25 -0600 | |
commit | d5b1fc4cea623a0d1699c9c2e693415ac69ca667 (patch) | |
tree | d56a1b3e9b4fa20aa6e710c413d2defa52581c95 /Gopkg.toml | |
parent | feat(main): just enough to bakelite itself (diff) | |
download | bakelite-d5b1fc4cea623a0d1699c9c2e693415ac69ca667.tar.xz |
feat(main): run jobs in parallel
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.
Diffstat (limited to 'Gopkg.toml')
-rw-r--r-- | Gopkg.toml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Gopkg.toml b/Gopkg.toml new file mode 100644 index 0000000..3e6859e --- /dev/null +++ b/Gopkg.toml @@ -0,0 +1,3 @@ +[[constraint]] + branch = "master" + name = "github.com/neelance/parallel" |