23 lines
594 B
Docker
23 lines
594 B
Docker
FROM rustlang/rust:nightly
|
|
|
|
RUN apt-get update && \
|
|
apt-get install -y --no-install-recommends \
|
|
make cmake g++ gcc llvm libclang-dev
|
|
|
|
RUN mkdir /zebra
|
|
WORKDIR /zebra
|
|
|
|
ENV RUST_BACKTRACE 1
|
|
ENV CARGO_HOME /zebra/.cargo/
|
|
|
|
RUN rustc -V; cargo -V; rustup -V
|
|
|
|
EXPOSE 8233 18233
|
|
|
|
COPY . .
|
|
RUN cargo test --all --no-run
|
|
RUN find /zebra/target/debug/deps -type f -perm 755 ! -name '*.dylib' ! -name '*.so' | sed -e 'p;s/-.*//' | xargs -n2 mv
|
|
|
|
# Filtering to only run integration tests requires nightly for now
|
|
CMD cargo +nightly test --test '*' --no-fail-fast -- -Zunstable-options --include-ignored
|