[makesdk] Overlay artifacts from different arch's SDK manifests

This runs create_layout.py on all (2) architectures we support and
overlays the builds past the first so that we pick up all
architecture-dependent artifacts in the layout. Concretely, this adds
libasync.default.so for both x64 and arm64.

Change-Id: I67c88cd9faed8764f3ad9cd0ee64493ef240a67e
1 file changed
tree: 3b3f41c9c143a6b1320a8dee603eb0b1baaff2f7
  1. dart/
  2. devshell/
  3. editors/
  4. gce/
  5. gdb/
  6. grubdisk/
  7. manifest/
  8. memory/
  9. packages/
  10. rust/
  11. sdk/
  12. style/
  13. vbox/
  14. vim/
  15. youcompleteme/
  16. zsh-completion/
  17. .gitignore
  18. AUTHORS
  19. bootstrap
  20. build-bootable-usb-gigaboot.sh
  21. build-qemu.sh
  22. build-zircon.sh
  23. colorize_logs
  24. CONTRIBUTING.md
  25. fd.py
  26. flog
  27. fx
  28. fx-env.sh
  29. fx-wrapper
  30. generate-intellij-config.py
  31. git-file-format
  32. git-file-tidy
  33. git-fuchsia-review
  34. git_utils.py
  35. LICENSE
  36. makesdk.go
  37. PATENTS
  38. paths.py
  39. publish-package.py
  40. push-package.py
  41. README.md
  42. run-dart-action.py
  43. run-zircon-arm64
  44. run-zircon-x86
  45. start-dhcp-server.sh
  46. update-manifest.go
README.md

Scripts

This repository is for scripts useful when hacking on Fuchsia. This repository should contain scripts that perform tasks spanning multiple repositories. Scripts that only operate within a single repository should live in the relevant repository.

push-package.py

The push-package.py script pushes the files listed in the given manifests files. No checking is performed for incremental changes.

The sample command lines below can be used to build Modular and then push those files to the default device. This assumes you have already booted your device with a version of Fuchsia that contains the most recent version of all other packages. This command line uses the “system_manifest” file from each of the modular directories, such as modular, modular_dev, and modular_tests.

cd $FUCHSIA_DIR
fx build peridot:modular_all
scripts/push-package.py out/debug-x64/package/modular*/system_manifest

fx publish

fx publish will take a package from the build and create a Fuchsia package manager package from a build package. It will then add the package to a local update respository which, by default, is put at ${FUCHSIA_BUILD_DIR}/amber-files. It will also add the package content files to the update repository and name these file after their Merkle Root. If a package name is supplied to fx publish, only that package will be processed. If no name is supplied, all the packages made by the build will be included.