Skip to content

Commit

Permalink
Increase parallelism in gox build
Browse files Browse the repository at this point in the history
For some reason, on CircleCI, it defaults to just one build at a time.
  • Loading branch information
brikis98 committed Jun 1, 2016
1 parent d639711 commit 381d013
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion _ci/build-and-push-release-assets.sh
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ function build_binaries {

# build the binaries
cd "$local_src_path"
gox -os "darwin linux windows" -arch "386 amd64" -output "$local_bin_output_path/${app_name}_{{.OS}}_{{.Arch}}" -ldflags "$ld_flags"
gox -os "darwin linux windows" -arch "386 amd64" -output "$local_bin_output_path/${app_name}_{{.OS}}_{{.Arch}}" -ldflags "$ld_flags" -parallel 32
}

# In order to push assets to a GitHub release, we must find the "github tag id" associated with the git tag
Expand Down

0 comments on commit 381d013

Please sign in to comment.