mirror of
https://github.com/Llewellynvdm/starship.git
synced 2024-11-04 20:37:56 +00:00
8239fbd12b
- Create subcommands to be able to print modules independently
- `starship prompt` will print the full prompt
- `starship module <MODULE_NAME>` will print a specific module
e.g. `starship module python`
- Added `--path` flag to print the prompt or modules without being in a specific directory
- Added `--status` flag to provide the status of the last command, instead of requiring it as an argument
- Refactored integration tests to be end-to-end tests, since there was no way in integration tests to set the environment variables for a specific command, which was required for the `username` module
- Moved e2e tests to `tests/testsuite` to allow for a single binary to be built
- Tests will build/run faster
- No more false positives for unused functions
- Added tests for `username`
- Removed codecov + tarpaulin 😢
54 lines
1.4 KiB
Docker
54 lines
1.4 KiB
Docker
FROM rust
|
|
|
|
# Install Node.js
|
|
ENV NODE_VERSION 12.0.0
|
|
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
|
|
RUN node --version
|
|
|
|
# Install Go
|
|
ENV GO_VERSION 1.10.0
|
|
ENV GOENV_ROOT /root/.goenv
|
|
ENV PATH $GOENV_ROOT/bin:$GOENV_ROOT/shims:$PATH
|
|
RUN git clone https://github.com/syndbg/goenv.git $GOENV_ROOT \
|
|
&& eval "$(goenv init -)" \
|
|
&& goenv install $GO_VERSION \
|
|
&& goenv global $GO_VERSION
|
|
# Check that Go was correctly installed
|
|
RUN go version
|
|
|
|
# Install Python
|
|
ENV PYTHON_VERSION 3.6.8
|
|
ENV PYENV_ROOT /root/.pyenv
|
|
ENV PATH $PYENV_ROOT/bin:$PYENV_ROOT/shims:$PATH
|
|
RUN curl https://pyenv.run | bash \
|
|
&& pyenv install $PYTHON_VERSION \
|
|
&& pyenv global $PYTHON_VERSION
|
|
# Check that Python was correctly installed
|
|
RUN python --version
|
|
|
|
# Create blank project
|
|
RUN USER=root cargo new --bin starship
|
|
WORKDIR /starship
|
|
|
|
# We want dependencies cached, so copy those first
|
|
COPY ./Cargo.lock ./Cargo.lock
|
|
COPY ./Cargo.toml ./Cargo.toml
|
|
|
|
# Cargo.toml will fail to parse without my_benchmark
|
|
RUN mkdir benches
|
|
RUN touch benches/my_benchmark.rs
|
|
|
|
# This is a dummy build to get dependencies cached
|
|
RUN cargo build --release
|
|
|
|
# Delete the dummy build
|
|
RUN rm -rf /starship
|
|
|
|
# Create the directory for the real source files
|
|
RUN mkdir starship
|
|
WORKDIR /starship
|
|
|
|
CMD ["cargo", "test", "--", "--ignored"]
|