summaryrefslogtreecommitdiff
path: root/remoteexec/remoteexec.go
diff options
context:
space:
mode:
author Anas Sulaiman <mrahs@google.com> 2023-11-15 20:26:34 +0000
committer Anas Sulaiman <mrahs@google.com> 2023-11-15 20:39:53 +0000
commit3f465a4685df5e53ce95160f757d60808058eb8b (patch)
tree0931d58a9b9135a5a725db4ed7a14412235d94cd /remoteexec/remoteexec.go
parent37d679df330aeb33fc536f7f75c248f5c641afc1 (diff)
fix RE for metalava actions
Some of those actions use unzip which is not available in the source tree and needs to be installed in the container. Bug: b/309783005 Test: Ran an android build and verified there are no local fallbacks from metalava actions. Change-Id: I36fcfe00f99d98721b1877aa99a08a536b3dd0c6
Diffstat (limited to 'remoteexec/remoteexec.go')
-rw-r--r--remoteexec/remoteexec.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/remoteexec/remoteexec.go b/remoteexec/remoteexec.go
index 690b47bbf..1e181fb17 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:953fed4a6b2501256a0d17f055dc17884ff71b024e50ade773e0b348a6c303e6"
+ DefaultImage = "docker://gcr.io/androidbuild-re-dockerimage/android-build-remoteexec-image@sha256:1eb7f64b9e17102b970bd7a1af7daaebdb01c3fb777715899ef462d6c6d01a45"
// DefaultWrapperPath is the default path to the remote execution wrapper.
DefaultWrapperPath = "prebuilts/remoteexecution-client/live/rewrapper"