samples: cellular: nrf_cloud_multi_service: Build all supported overlays #43459
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: OSS history check | |
on: pull_request | |
jobs: | |
contribs: | |
runs-on: ubuntu-latest | |
name: Check OSS history | |
steps: | |
- name: Checkout the code | |
uses: actions/checkout@v3 | |
with: | |
path: ncs/nrf | |
fetch-depth: 0 | |
- name: Install extra python dependencies | |
run: | | |
pip3 install west | |
pip3 install -r ncs/nrf/scripts/requirements-extra.txt | |
- name: Set up the workspace | |
run: | | |
west init -l ncs/nrf | |
cd ncs | |
west update | |
git -C zephyr remote add upstream https://github.com/zephyrproject-rtos/zephyr | |
- name: Check manifest userdata | |
working-directory: ncs/nrf | |
run: | | |
python3 scripts/ci/check_manifest_userdata.py | |
- name: Check OSS history | |
uses: nrfconnect/action-oss-history@main | |
with: | |
workspace: 'ncs' | |
args: -p zephyr -p mcuboot -p trusted-firmware-m -p hostap -p wfa-qt-control-app |