mirror of
https://github.com/status-im/consul.git
synced 2025-01-09 21:35:52 +00:00
7af643ac37
* ci: stop building darwin/386 binaries Go 1.15 drops support for 32-bit binaries on Darwin https://golang.org/doc/go1.15#darwin * tls: ConnectionState::NegotiatedProtocolIsMutual is deprecated in Go 1.15, this value is always true * correct error messages that changed slightly * Completely regenerate some TLS test data Co-authored-by: R.B. Boyer <rb@hashicorp.com>
14 lines
257 B
Docker
14 lines
257 B
Docker
FROM travisci/ci-garnet:packer-1512502276-986baf0
|
|
|
|
ENV GOLANG_VERSION 1.15.4
|
|
|
|
RUN mkdir -p /home/travis/go && chown -R travis /home/travis/go
|
|
|
|
ENV GOPATH /home/travis/go
|
|
|
|
USER travis
|
|
|
|
COPY flake.sh /usr/local/bin/flake.sh
|
|
|
|
ENTRYPOINT [ "bash", "flake.sh" ]
|