This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

Need help on installing the Building the project using GitHub actions for the nRF Asset tracker

Hey all,

I'm trying to install the nRF Asset tracker. I'm stuck at a step called Building the project using GitHub.   I just need to know how to build the project using the GitHub repository.  I'm here attaching the screenshot of the page. 

  • Hi Kirit,

    The build and release actions will be triggered once you changing the following source code files in repository as specified on the wokeflows defination file build-and-release.yaml,

      push:
        paths:
          - "**.c"
          - "**.h"
          - "**.feature"
          - "Kconfig"
          - ".github/workflows/build-and-release.yaml"
          - "Dockerfile"
          - "west.yml"
          - "*.conf"

    On the Actions page, you can find the log file of workflow actions. It is also to trigger a workflow here manually here.

    You can find more tutorials about how to use GitHub actions from the Github official documents and many tutorial videos from Youtube.

    Best regards,

    Charlie

  • Thanks for giving some good pointers here!

    what are you struggling with specifically? I am aware it's a complicated topic, and we expect previous experience with the GitHub Actions service. If you have no experience at all, check out their documentation and set up a project that you are familiar with, before trying the setup with the nRF Asset Tracker Firmware.

Related