add version generation for CPE and PURL in zephyr/module.yml #386
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: Test after code changes | |
on: | |
workflow_dispatch: | |
push: | |
paths: | |
- '**.c' | |
- '**.h' | |
- '**.py' | |
- '**.sh' | |
- '**.yml' | |
- '**.proto' | |
- '**.mk' | |
- '**.cmake' | |
pull_request: | |
paths: | |
- '**.c' | |
- '**.h' | |
- '**.py' | |
- '**.sh' | |
- '**.yml' | |
- '**.proto' | |
- '**.mk' | |
- '**.cmake' | |
jobs: | |
smoke_test: | |
name: Run test suite on Ubuntu 20.04 | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
python-version: ['3.8', '3.x'] | |
os: ['ubuntu-20.04', 'ubuntu-24.04'] | |
steps: | |
- name: Check out code from GitHub | |
uses: actions/checkout@v4 | |
with: | |
path: nanopb | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install protobuf-compiler splint valgrind | |
python3 -m pip install --user --upgrade scons protobuf grpcio-tools pyinstaller | |
python3 -c 'import google.protobuf; print(google.protobuf.__file__)' | |
- name: Run tests | |
run: | | |
cd nanopb/tests | |
scons | |
fuzz_tests: | |
needs: smoke_test | |
uses: ./.github/workflows/cifuzz.yml | |
binary_builds: | |
needs: smoke_test | |
uses: ./.github/workflows/binary_packages.yml | |