9601185bb6
Change-Id: I0ffd838880746dbfe534ea615277fc24cd26b7ec No-Try: true Docs-Preview: https://skia.org/docs/dev/design/conical/corollary2.3.3?cl=392736 Docs-Preview: https://skia.org/docs/dev/testing/Digests?cl=392736 Docs-Preview: https://skia.org/docs/dev/testing/Status?cl=392736 Docs-Preview: https://skia.org/docs/dev/testing/Cluster?cl=392736 Docs-Preview: https://skia.org/docs/dev/testing/Perf?cl=392736 Docs-Preview: https://skia.org/docs/dev/design/conical/corollary2.3.2?cl=392736 Docs-Preview: https://skia.org/docs/dev/design/conical/lemma4?cl=392736 Docs-Preview: https://skia.org/docs/dev/testing/IssueHighlight?cl=392736 Docs-Preview: https://skia.org/docs/dev/design/conical/lemma3.1?cl=392736 Docs-Preview: https://skia.org/docs/dev/tools/tracing?cl=392736 Docs-Preview: https://skia.org/docs/dev/testing/BlameView?cl=392736 Docs-Preview: https://skia.org/docs/dev/design/conical/corollary2.2.2?cl=392736 Docs-Preview: https://skia.org/docs/dev/design/conical/?cl=392736 Docs-Preview: https://skia.org/docs/dev/testing/download?cl=392736 Docs-Preview: https://skia.org/docs/dev/testing/Isolate?cl=392736 Docs-Preview: https://skia.org/docs/dev/testing/Search?cl=392736 Docs-Preview: https://skia.org/docs/dev/tools/end?cl=392736 Docs-Preview: https://skia.org/docs/dev/tools/image?cl=392736 Docs-Preview: https://skia.org/docs/dev/testing/Grid?cl=392736 Docs-Preview: https://skia.org/docs/dev/design/conical/corollary2.2.1?cl=392736 Docs-Preview: https://skia.org/docs/dev/tools/debugger?cl=392736 Docs-Preview: https://skia.org/docs/dev/design/pdftheory?cl=392736 Docs-Preview: https://skia.org/docs/dev/tools/resources?cl=392736 Docs-Preview: https://skia.org/docs/dev/tools/playcommands?cl=392736 Docs-Preview: https://skia.org/docs/dev/testing/DotDiagram?cl=392736 Docs-Preview: https://skia.org/docs/dev/testing/Ignores?cl=392736 Docs-Preview: https://skia.org/docs/dev/tools/onlinedebugger?cl=392736 Docs-Preview: https://skia.org/docs/dev/tools/crosshair?cl=392736 Docs-Preview: https://skia.org/docs/dev/tools/frameplayback?cl=392736 Docs-Preview: https://skia.org/docs/dev/design/conical/corollary2.3.1?cl=392736 Docs-Preview: https://skia.org/docs/dev/tools/buttons?cl=392736 Docs-Preview: https://skia.org/docs/dev/testing/ClusterConfig?cl=392736 Docs-Preview: https://skia.org/docs/dev/design/conical/lemma3.2?cl=392736 Docs-Preview: https://skia.org/docs/dev/testing/skiaperf?cl=392736 Docs-Preview: https://skia.org/docs/dev/contrib/SuggestedReviewers?cl=392736 Docs-Preview: https://skia.org/docs/user/modules/PathKit_effects?cl=392736 Docs-Preview: https://skia.org/docs/dev/testing/Regression?cl=392736 Docs-Preview: https://skia.org/docs/dev/testing/ByTest?cl=392736 Docs-Preview: https://skia.org/docs/dev/tools/settings?cl=392736 Docs-Preview: https://skia.org/docs/dev/design/conical/lemma1?cl=392736 Docs-Preview: https://skia.org/docs/dev/design/PdfLogicalDocumentStructure?cl=392736 Docs-Preview: https://skia.org/docs/dev/testing/skiagold?cl=392736 Docs-Preview: https://skia.org/docs/dev/tools/expand?cl=392736 Docs-Preview: https://skia.org/docs/dev/tools/tracing_load?cl=392736 Docs-Preview: https://skia.org/docs/dev/tools/layers?cl=392736 Docs-Preview: https://skia.org/docs/dev/tools/gpuop?cl=392736 Reviewed-on: https://skia-review.googlesource.com/c/skia/+/392736 Reviewed-by: Joe Gregorio <jcgregorio@google.com>
39 lines
1012 B
Markdown
39 lines
1012 B
Markdown
|
|
---
|
|
title: "Downloading Isolates"
|
|
linkTitle: "Downloading Isolates"
|
|
|
|
---
|
|
|
|
|
|
The intermediate and final build products from running tests are all stored in
|
|
[Isolate](https://github.com/luci/luci-py/blob/master/appengine/isolate/doc/Design.md),
|
|
and can be downloaded to the desktop for inspection and debugging.
|
|
|
|
First install the client:
|
|
|
|
git clone https://github.com/luci/client-py.git
|
|
|
|
Add the checkout location to your $PATH.
|
|
|
|
To download the isolated files for a test first visit
|
|
the build status page and find the "isolated output" link:
|
|
|
|
<img src="../Status.png" style="margin-left:30px" width=576 height=271 >
|
|
|
|
|
|
Follow that link to find the hash of the isolated outputs:
|
|
|
|
|
|
<img src="../Isolate.png" style="margin-left:30px" width=451 height=301 >
|
|
|
|
Then run `isolateserver.py` with --isolated set to that hash:
|
|
|
|
$ isolateserver.py \
|
|
download \
|
|
--isolate-server=https://isolateserver.appspot.com \
|
|
--isolated=5b85b7c382ee2a34530e33c7db20a07515ff9481 \
|
|
--target=./download/
|
|
|
|
|