mirror of
https://github.com/golang/go
synced 2024-11-19 13:04:45 -07:00
cced8d21dd
This change adds a 32-bit builder for gccgo and fixes some specific configuration problems with the docker image/coordinator to speed up builds. The go builder running on the linux-x86-gccgo image has been modified to run `make -j16` when building to reduce build times from ~60 minutes to ~10 minutes and the coordinator has been modified to run the command `make check-go -j16` to reduce testsuite run times from ~30 minutes to ~10 minutes. LGTM=bradfitz R=bradfitz CC=adg, golang-codereviews https://golang.org/cl/151530043
19 lines
586 B
Docker
19 lines
586 B
Docker
# Copyright 2014 The Go Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style
|
|
# license that can be found in the LICENSE file.
|
|
|
|
# gobuilders/linux-x86-gccgo for 32- and 64-bit gccgo.
|
|
|
|
FROM debian:wheezy
|
|
MAINTAINER golang-dev <golang-dev@googlegroups.com>
|
|
|
|
ENV DEBIAN_FRONTEND noninteractive
|
|
|
|
ADD /scripts/install-apt-deps.sh /scripts/
|
|
RUN /scripts/install-apt-deps.sh
|
|
|
|
ADD /scripts/install-gold.sh /scripts/
|
|
RUN /scripts/install-gold.sh
|
|
|
|
ADD /scripts/install-gccgo-builder.sh /scripts/
|
|
RUN /scripts/install-gccgo-builder.sh && test -f /usr/local/bin/builder |