Remove token #3
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: WeFault Fleet Build & OTA Deploy | |
on: | |
push: | |
branches: | |
- gminn/add-nightly-ota | |
jobs: | |
ota-deploy: | |
runs-on: ubuntu-latest | |
container: | |
image: memfault/nrf-connect-sdk:2023-11-22 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Move to workspace folder | |
run: | | |
cd $GITHUB_WORKSPACE | |
- name: Setup Python Virtual Environment | |
run: | | |
python -m venv venv | |
. venv/bin/activate | |
- name: Setup west workspace | |
run: | | |
pip install west | |
west init -l memfault-asset-tracker | |
pip install -r zephyr/scripts/requirements.txt | |
pip install -r nrf/scripts/requirements-build.txt | |
west update | |
- name: Build app | |
run: | | |
west build -b thingy91_nrf9160_ns -p always memfault-asset-tracker -- \ | |
-DCONFIG_MEMFAULT_NCS_PROJECT_KEY=\"ql0FnYPwmJGgaOS4JbFhmXBc8pqmRfb3\" \ | |
-DOVERLAY_CONFIG=overlay-memfault.conf \ | |
-DCONFIG_BUILD_OUTPUT_META=n \ | |
-Dmcuboot_CONFIG_BUILD_OUTPUT_META=n |