Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .ci/build-kit/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,11 @@ FROM ghcr.io/everest/everest-ci/build-kit-base:${BASE_IMAGE_TAG}

# FIXME(kai): Install libsystemd-dev as a dependency of sdbus-c++
RUN apt-get update && apt-get -y install libsystemd-dev

# FIXME(andistorm): Install rust tools
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
ENV PATH="/${HOME}/.cargo/bin:${PATH}"
ENV PATH="/root/.cargo/bin:${PATH}"

RUN echo "Path: ${PATH}"
RUN which cargo || echo "Cargo not found in PATH"
1 change: 1 addition & 0 deletions .ci/build-kit/scripts/build_docs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ cmake \
-G Ninja \
-D EVC_ENABLE_CCACHE=ON \
-D EVEREST_ENABLE_COMPILE_WARNINGS=ON \
-D EVEREST_ENABLE_RS_SUPPORT=ON \
-D EVEREST_BUILD_DOCS=ON \
-D TRAILBOOK_everest_DOWNLOAD_ALL_VERSIONS=ON \
-D TRAILBOOK_everest_IS_RELEASE="$TRAILBOOK_everest_IS_RELEASE" \
Expand Down
Loading