[roll] Update submodules

Roller-URL: https://ci.chromium.org/b/8813093652818617249
Cq-Cl-Tag: roller-builder:sdk-samples-fortune-teller-submodule-roller
Cq-Cl-Tag: roller-bid:8813093652818617249
CQ-Do-Not-Cancel-Tryjobs: true
Change-Id: Ia913826b6d81778d100a5a130cc4d6a243d2fa70
Reviewed-on: https://fuchsia-review.googlesource.com/c/sdk-samples/fortune-teller/+/684084
Commit-Queue: GI Roller <global-integration-roller@fuchsia-infra.iam.gserviceaccount.com>
1 file changed
tree: 0cbd6b33daafb4c14e02ea8b04c3634529183467
  1. scripts/
  2. src/
  3. third_party/
  4. tools/
  5. .bazelrc
  6. .gitignore
  7. .gitmodules
  8. AUTHORS
  9. BUILD.bazel
  10. CONTRIBUTING.md
  11. LICENSE
  12. OWNERS
  13. PATENTS
  14. README.md
  15. sdk_version
  16. WORKSPACE.bazel
README.md

SDK Samples: Fortune Teller

This repository contains instructions and source code to build, package and run Fuchsia samples using only the Fuchsia SDK.

Requirements

  1. Install a Bazel version no older than the one defined in the WORKSPACE.bazel file, by following the instructions at https://bazel.build/install. In some Linux distributions, sudo apt-get install bazel should be enough.

  2. Make sure this repository has the required submodules:

    git submodule update --recursive --init
    
  3. Ensure that there are Fuchsia SSH keys in your host machine. You will need them for running the Fuchsia emulator.

     [[ -f "${HOME}/.ssh/fuchsia_ed25519" ]] || ssh-keygen -P "" -t ed25519 -f "${HOME}/.ssh/fuchsia_ed25519" -C "${USER}@$(hostname -f) Shared SSH Key for Fuchsia"
    
     [[ -f "${HOME}/.ssh/fuchsia_authorized_keys" ]] || ssh-keygen -y -f "${HOME}/.ssh/fuchsia_ed25519" > "${HOME}/.ssh/fuchsia_authorized_keys"
    

Build and package the sample

Now the repository is ready to build the sample.

  1. Fetch an emulator image and start an emulator

    tools/ffx product-bundle get workstation.qemu-x64
    tools/ffx emu start -H workstation.qemu-x64
    
  2. (optional) watch the device log in a separate window

    tools/ffx log
    
  3. Run the fortune-teller component

    bazel run --config=fuchsia_x64 //src/fortune_teller:pkg.component
    

    Watch that your fortune is printed in the log.