move-binaries-spec.js 765 B

123456789101112131415161718192021222324
  1. exports['collected builds and copied desktop'] = {
  2. "lastBuilds": [
  3. {
  4. "platformArch": "darwin-x64",
  5. "s3zipPath": "beta/binary/3.3.0/darwin-x64/circle-develop-455046b928c861d4457b2ec5426a51de1fda74fd-102457/cypress.zip"
  6. }
  7. ],
  8. "testRunners": [
  9. {
  10. "platformArch": "darwin-x64",
  11. "s3zipPath": "desktop/3.3.0/darwin-x64/cypress.zip"
  12. }
  13. ]
  14. }
  15. exports['move-binaries parseBuildPath parses into SHA and build 1'] = {
  16. "path": "beta/binary/3.3.0/darwin-x64/circle-develop-47e98fa1d0b18867a74da91a719d0f1ae73fcbc7-101843/",
  17. "parsed": {
  18. "commit": "47e98fa1d0b18867a74da91a719d0f1ae73fcbc7",
  19. "build": 101843,
  20. "s3path": "beta/binary/3.3.0/darwin-x64/circle-develop-47e98fa1d0b18867a74da91a719d0f1ae73fcbc7-101843/"
  21. }
  22. }