Skip to content
Open
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 .config/cache-config.env
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
CACHE_VERSION=v2
CACHE_VERSION=version-1.57-dev
BAZEL_REMOTE_CACHE="https://storage.googleapis.com/android-cuttlefish-cache"

6 changes: 6 additions & 0 deletions base/debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
cuttlefish-common (1.57.1) unstable; urgency=medium

* Revert "tools/*/cw/Containerfile is now based on trixie" by @ser-io in https://github.com/google/android-cuttlefish/pull/3133

-- Cody Schuffelen <schuffelen@google.com> Thu, 03 Sep 2026 14:28:28 -0700

cuttlefish-common (1.57.0) unstable; urgency=medium

* Mark release 1.56.0 as unstable by @Databean in https://github.com/google/android-cuttlefish/pull/2767
Expand Down
6 changes: 6 additions & 0 deletions container/debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
cuttlefish-container (1.57.1) unstable; urgency=medium

* Revert "tools/*/cw/Containerfile is now based on trixie" by @ser-io in https://github.com/google/android-cuttlefish/pull/3133

-- Cody Schuffelen <schuffelen@google.com> Thu, 03 Sep 2026 14:28:16 -0700

cuttlefish-container (1.57.0) unstable; urgency=medium

* Mark release 1.56.0 as unstable by @Databean in https://github.com/google/android-cuttlefish/pull/2767
Expand Down
6 changes: 6 additions & 0 deletions cuttlefish-integration-gigabyte-arm64/debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
cuttlefish-integration-gigabyte-arm64 (1.57.1) unstable; urgency=medium

* Revert "tools/*/cw/Containerfile is now based on trixie" by @ser-io in https://github.com/google/android-cuttlefish/pull/3133

-- Cody Schuffelen <schuffelen@google.com> Thu, 03 Sep 2026 14:28:00 -0700

cuttlefish-integration-gigabyte-arm64 (1.57.0) unstable; urgency=medium

* Start development on 1.57 by @Databean in https://github.com/google/android-cuttlefish/pull/2768
Expand Down
6 changes: 6 additions & 0 deletions frontend/debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
cuttlefish-frontend (1.57.1) unstable; urgency=medium

* Revert "tools/*/cw/Containerfile is now based on trixie" by @ser-io in https://github.com/google/android-cuttlefish/pull/3133

-- Cody Schuffelen <schuffelen@google.com> Thu, 03 Sep 2026 14:27:33 -0700

cuttlefish-frontend (1.57.0) unstable; urgency=medium

* Mark release 1.56.0 as unstable by @Databean inhttps://github.com/google/android-cuttlefish/pull/2767
Expand Down
8 changes: 7 additions & 1 deletion tools/buildutils/cw/Containerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,16 @@
FROM mirror.gcr.io/library/debian:13 AS base
FROM mirror.gcr.io/library/debian:bookworm-20250811 AS base

ENV DEBIAN_FRONTEND=noninteractive

RUN apt update -y && apt upgrade -y
RUN apt install -y sudo devscripts

# Download newer version of golang with keep using bookworm for building debian
# packages.
RUN echo "deb http://deb.debian.org/debian bookworm-backports main" > /etc/apt/sources.list.d/backports.list
RUN apt update
RUN apt install -t bookworm-backports -y golang

COPY ./tools/buildutils/installbazel.sh /installbazel.sh
RUN /installbazel.sh && rm /installbazel.sh

Expand Down
2 changes: 1 addition & 1 deletion tools/testutils/cw/Containerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM mirror.gcr.io/library/debian:13 AS base
FROM mirror.gcr.io/library/debian:bookworm-20250811 AS base

ENV DEBIAN_FRONTEND=noninteractive
ENV OVERRIDE_BAZEL_WRAPPER_DOWNLOAD_DIR=/tmp/cw_bazel
Expand Down
Loading