Skip to content
Merged
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
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ RUN --mount=type=cache,sharing=locked,id=kernel-aptlib,target=/var/lib/apt \
--mount=type=cache,sharing=locked,id=kernel-aptcache,target=/var/cache/apt \
apt-get update && apt-get install -y build-essential libncurses-dev flex bison libssl-dev libelf-dev bc cpio git wget xz-utils curl lz4

ARG KERNEL_VERSION="7.1"
ARG KERNEL_VERSION="7.2.1"
ARG KERNEL_ARCH="x86_64"
ARG KERNEL_NPROC="16"

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.qemu
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
FROM ubuntu:26.04 AS builder

# Build arguments
ARG QEMU_VERSION=11.0.1
ARG QEMU_VERSION=11.1.1
ARG JOBS=8
ARG DEBIAN_FRONTEND=noninteractive

Expand Down
6 changes: 3 additions & 3 deletions Taskfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ tasks:
--platform linux/amd64 \
--cache-from type=local,src={{.BUILDKIT_CACHE_INITRD}} \
--cache-to type=local,dest={{.BUILDKIT_CACHE_INITRD}},mode=max,compression=zstd \
--build-arg KERNEL_VERSION=7.1 \
--build-arg KERNEL_VERSION=7.2.1 \
--build-arg KERNEL_ARCH=x86_64 \
--build-arg KERNEL_NPROC=8 \
--build-arg VMINITD_CACHE_BUST="${COMMIT_SHA}" \
Expand All @@ -171,7 +171,7 @@ tasks:
--platform linux/amd64 \
--cache-from type=local,src={{.BUILDKIT_CACHE_KERNEL}} \
--cache-to type=local,dest={{.BUILDKIT_CACHE_KERNEL}},mode=max,compression=zstd \
--build-arg KERNEL_VERSION=7.1 \
--build-arg KERNEL_VERSION=7.2.1 \
--build-arg KERNEL_ARCH=x86_64 \
--build-arg KERNEL_NPROC=8 \
--output type=local,dest={{.OUTPUT_DIR}} \
Expand All @@ -190,7 +190,7 @@ tasks:
--platform linux/amd64 \
--cache-from type=local,src={{.BUILDKIT_CACHE_QEMU}} \
--cache-to type=local,dest={{.BUILDKIT_CACHE_QEMU}},mode=max,compression=zstd \
--build-arg QEMU_VERSION=11.0.1 \
--build-arg QEMU_VERSION=11.1.1 \
--build-arg QEMU_JOBS=8 \
--output type=local,dest={{.OUTPUT_DIR}} \
.
Expand Down
Loading