1
0
mirror of https://github.com/Llewellynvdm/starship.git synced 2024-12-01 01:04:00 +00:00

Use tarpaulin and Codecov for adding code coverage to project (#68)

This commit is contained in:
Matan Kushner 2019-05-29 22:58:46 +02:00 committed by GitHub
parent 617b278a33
commit 000abfe6df
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 26 additions and 22 deletions

3
.gitignore vendored
View File

@ -13,3 +13,6 @@ Cargo.lock
# Intellij IDE configuration # Intellij IDE configuration
.idea/ .idea/
# Cobertura coverage report
cobertura.xml

View File

@ -4,7 +4,8 @@
<p align="center">The cross-shell prompt for astronauts.</p> <p align="center">The cross-shell prompt for astronauts.</p>
<p align="center"> <p align="center">
<a href="https://dev.azure.com/starship-control/starship/_build"><img src="https://badgen.net/azure-pipelines/starship-control/starship/Starship%20Test%20Suite" alt="Azure Pipelines Build Status"></a> <a href="https://dev.azure.com/starship-control/starship/_build"><img src="https://badgen.net/azure-pipelines/starship-control/starship/Starship%20Test%20Suite" alt="Azure Pipelines Build Status"></a>
<a href="#contributors"><img src="https://badgen.net/badge/all%20contributors/6/orange" alt="All Contributors"></a> <a href="https://codecov.io/gh/starship/starship"><img src="https://badgen.net/codecov/c/github/starship/starship" alt="Codecov Coverage"></a>
<a href="#contributors"><img src="https://badgen.net/badge/all%20contributors/7/orange" alt="All Contributors"></a>
<a href="https://discord.gg/8Jzqu3T"><img src="https://badgen.net/badge/chat/on%20discord/7289da" alt="Chat on Discord"></a> <a href="https://discord.gg/8Jzqu3T"><img src="https://badgen.net/badge/chat/on%20discord/7289da" alt="Chat on Discord"></a>
</p> </p>
</p> </p>

View File

@ -8,6 +8,9 @@ jobs:
- script: ./integration_test - script: ./integration_test
displayName: Run integration test within Docker displayName: Run integration test within Docker
- script: bash <(curl -s https://codecov.io/bash) -t $(CODECOV_TOKEN)
displayName: Report coverage to Codecov
- script: | - script: |
docker login -u $(dockerUsername) -p $(dockerPassword) docker login -u $(dockerUsername) -p $(dockerPassword)
docker push starshipcommand/starship-test docker push starshipcommand/starship-test

View File

@ -16,4 +16,6 @@ docker build -f tests/Dockerfile \
. .
printf 'Running test suite:\n' printf 'Running test suite:\n'
docker run --rm -t -v $(pwd):/starship starshipcommand/starship-test # `seccomp=unconfined` is needed to allow tarpaulin to disable ASLR
# Details found here: https://github.com/xd009642/tarpaulin/issues/146
docker run --rm --security-opt seccomp=unconfined -v $(pwd):/starship starshipcommand/starship-test

View File

@ -1,38 +1,32 @@
FROM rust:latest FROM rust
# Install Tarpaulin (code coverage tool)
# https://github.com/xd009642/tarpaulin
COPY --from=xd009642/tarpaulin /usr/local/cargo/bin/cargo-tarpaulin /usr/local/cargo/bin/cargo-tarpaulin
# Install Node.js # Install Node.js
ENV NODE_VERSION 12.0.0 ENV NODE_VERSION 12.0.0
RUN curl https://raw.githubusercontent.com/creationix/nvm/master/install.sh | bash \
&& . $HOME/.nvm/nvm.sh \
&& nvm install $NODE_VERSION \
&& nvm alias default $NODE_VERSION \
&& nvm use default
ENV PATH /root/.nvm/versions/node/v$NODE_VERSION/bin:$PATH ENV PATH /root/.nvm/versions/node/v$NODE_VERSION/bin:$PATH
RUN curl https://raw.githubusercontent.com/creationix/nvm/master/install.sh | bash
# Check that Node.js was correctly installed # Check that Node.js was correctly installed
RUN node --version RUN node --version
# Install Go # Install Go
ENV GO_VERSION 1.10.0 ENV GO_VERSION 1.10.0
ENV GOENV_ROOT /root/.goenv ENV GOENV_ROOT /root/.goenv
ENV GO_ROOT /root/go
# RUN git clone https://github.com/wfarr/goenv.git $GOENV_ROOT
RUN git clone https://github.com/syndbg/goenv.git $GOENV_ROOT
ENV PATH $GOENV_ROOT/bin:$GOENV_ROOT/shims:$PATH ENV PATH $GOENV_ROOT/bin:$GOENV_ROOT/shims:$PATH
RUN eval "$(goenv init -)" RUN git clone https://github.com/syndbg/goenv.git $GOENV_ROOT \
RUN mkdir -p $GO_ROOT && eval "$(goenv init -)" \
ENV GOPATH $GO_ROOT && goenv install $GO_VERSION \
ENV PATH $GO_ROOT/bin:$PATH && goenv global $GO_VERSION
RUN goenv install $GO_VERSION
RUN goenv global $GO_VERSION
# Check that Go was correctly installed # Check that Go was correctly installed
RUN go version RUN go version
# Install Python # Install Python
ENV PYTHON_VERSION 3.6.8 ENV PYTHON_VERSION 3.6.8
ENV PYENV_ROOT /root/.pyenv ENV PYENV_ROOT /root/.pyenv
ENV PATH $PYENV_ROOT/shims:$PYENV_ROOT/bin:$PATH ENV PATH $PYENV_ROOT/bin:$PYENV_ROOT/shims:$PATH
RUN curl https://pyenv.run | bash \ RUN curl https://pyenv.run | bash \
&& pyenv update \
&& pyenv install $PYTHON_VERSION \ && pyenv install $PYTHON_VERSION \
&& pyenv global $PYTHON_VERSION && pyenv global $PYTHON_VERSION
# Check that Python was correctly installed # Check that Python was correctly installed
@ -60,4 +54,5 @@ RUN rm -rf /starship
RUN mkdir starship RUN mkdir starship
WORKDIR /starship WORKDIR /starship
CMD ["cargo", "test", "--", "--ignored"] # Instrument coverage tooling and run the full test suite
CMD ["cargo", "tarpaulin", "--ignored", "--out", "Xml"]