Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[eve-kernel-riscv64-v6.1.38-generic] enable ccache #147

Open
wants to merge 1 commit into
base: eve-kernel-riscv64-v6.1.38-generic
Choose a base branch
from
Open
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
18 changes: 8 additions & 10 deletions Dockerfile.gcc
Original file line number Diff line number Diff line change
Expand Up @@ -86,17 +86,15 @@ ENV SOURCE_DATE_EPOCH="${SOURCE_DATE_EPOCH}"
# ensure CONFIG_BPF_KPROBE_OVERRIDE is not set
RUN ! grep -q -E 'CONFIG_BPF_KPROBE_OVERRIDE=[y|m]' .config || (echo "Cannot set this option for security reasons"; false)

RUN make -j$(nproc) mrproper
RUN make O=/kernel-out ${KERNEL_CONFIG}
RUN --mount=type=cache,target=/root/.cache/ccache,id=kernel-ccache-${TARGETARCH} \
ccache -z && \
echo "Building kernel for ${TARGETARCH} with ARCH=${ARCH} and CROSS_COMPILE=${CROSS_COMPILE}" && \
make -j$(nproc) mrproper \
&& make O=/kernel-out ${KERNEL_CONFIG} \
&& make O=/kernel-out LOCALVERSION="-${LOCALVERSION}" -j$(nproc) prepare \
&& make O=/kernel-out LOCALVERSION="-${LOCALVERSION}" -j$(nproc) \
&& make O=/kernel-out LOCALVERSION="-${LOCALVERSION}" -j$(nproc) modules \
ccache -z \
&& echo "Building kernel for ${TARGETARCH} with ARCH=${ARCH} and CROSS_COMPILE=${CROSS_COMPILE}" \
&& make CC="${CC}" O=/kernel-out LOCALVERSION="-${LOCALVERSION}" -j$(nproc) prepare bzImage modules \
&& make O=/kernel-out LOCALVERSION="-${LOCALVERSION}" -j$(nproc) modules_install INSTALL_MOD_STRIP=1 \
INSTALL_MOD_PATH=/tmp/kernel-modules \
&& ccache -s
&& ccache -s | tee -a /ccache-stats.txt

ADD https://github.com/mikem-zed/zfs.git#eve-zfs-2.1.12 /tmp/zfs
WORKDIR /tmp/zfs
Expand All @@ -113,9 +111,9 @@ RUN --mount=type=cache,target=/root/.cache/ccache,id=zfs-ccache-${TARGETARCH} \
./scripts/make_gitrev.sh

RUN --mount=type=cache,target=/root/.cache/ccache,id=zfs-ccache-${TARGETARCH} \
make -C module -j$(nproc) && \
make CC="${CC}" -C module -j$(nproc) && \
make -C module INSTALL_MOD_STRIP=1 INSTALL_MOD_PATH=/tmp/kernel-modules install && \
ccache -s
ccache -s | tee -a /ccache-stats.txt

FROM builder as artifacts

Expand Down