commit | 13342315b6256a1f2e7a1fe634244940567849ca | [log] [tgz] |
---|---|---|
author | Yifeng Zeng <yifengzeng@google.com> | Thu Mar 06 16:22:05 2025 -0800 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Thu Mar 06 16:22:05 2025 -0800 |
tree | 1eaf49fda0eb92f6a838a1409badec9d5814fbdc | |
parent | 87f1f1ee088097fa1ed16304d6ffeee32b58bdd5 [diff] | |
parent | d0015db164bcc4f684b6bab44f6cafb5f28cbf81 [diff] |
Merge "Skip install deps that is in "data" partition" into main
diff --git a/cc/test.go b/cc/test.go index d2c4b28..8b68c55 100644 --- a/cc/test.go +++ b/cc/test.go
@@ -455,6 +455,9 @@ if standaloneTestDep.SkipInstall() { continue } + if standaloneTestDep.Partition() == "data" { + continue + } test.binaryDecorator.baseInstaller.installStandaloneTestDep(ctx, standaloneTestDep) } }