Workaround Codeship coverage upload report issues

Codeship / Codecov docs are incorrect, but it seems I could make it work with this workaround.
This commit is contained in:
Mickael Remond
2018-01-02 16:21:45 +01:00
parent fb5911564c
commit 51d6759354
4 changed files with 7 additions and 12 deletions

View File

@@ -1,9 +1,5 @@
FROM golang:1.9
WORKDIR /go/src/fluux.io/xmpp
RUN curl -o codecov.sh -s https://codecov.io/bash && chmod +x codecov.sh
COPY . ./
RUN apt-get update \
&& apt-get install -y \
git \
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/*
RUN go get -t -v ./...
RUN go get -t ./...