diff options
author | 2023-11-01 16:53:43 +0000 | |
---|---|---|
committer | 2023-11-01 17:41:44 +0000 | |
commit | e208e856fd6f68a9eb9a5a9bd31bc80cc222e836 (patch) | |
tree | 32bc794a3fd22f503170ba2d6d2ba59a33a1ea10 | |
parent | c416ddd1cc0f4eac7895795464927217ace2c6b3 (diff) |
fix potential encoding issues in remote actions
The new docker image contains all en_*.UTF-8 locales to ensure Java (and
other) actions produce the correct bytes.
Bug: b/300624128
Test: Ran an android build and verified there are no encoding issues in
metalava outputs.
Change-Id: I89cd1b45ce3d8dc552c2afb859c1a5e221c5f238
-rw-r--r-- | remoteexec/remoteexec.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/remoteexec/remoteexec.go b/remoteexec/remoteexec.go index 150d62c04..690b47bbf 100644 --- a/remoteexec/remoteexec.go +++ b/remoteexec/remoteexec.go @@ -30,7 +30,7 @@ const ( // DefaultImage is the default container image used for Android remote execution. The // image was built with the Dockerfile at // https://android.googlesource.com/platform/prebuilts/remoteexecution-client/+/refs/heads/master/docker/Dockerfile - DefaultImage = "docker://gcr.io/androidbuild-re-dockerimage/android-build-remoteexec-image@sha256:582efb38f0c229ea39952fff9e132ccbe183e14869b39888010dacf56b360d62" + DefaultImage = "docker://gcr.io/androidbuild-re-dockerimage/android-build-remoteexec-image@sha256:953fed4a6b2501256a0d17f055dc17884ff71b024e50ade773e0b348a6c303e6" // DefaultWrapperPath is the default path to the remote execution wrapper. DefaultWrapperPath = "prebuilts/remoteexecution-client/live/rewrapper" |