drivers: can: zephyr: Prevent potential null pointer dereference #457
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: FreeRTOS Build and Test | |
on: [push, pull_request] | |
jobs: | |
build-freertos: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
steps: | |
- name: Setup build system packages on Linux | |
run: | | |
sudo apt-get install ninja-build meson tree | |
- name: Checkout Test App | |
uses: actions/checkout@v4 | |
with: | |
repository: libcsp/libcsp-freertos | |
- name: Checkout FreeRTOS Kernel | |
uses: actions/checkout@v4 | |
with: | |
repository: FreeRTOS/FreeRTOS-Kernel | |
path: freertos | |
- name: Checkout libcsp under subprojects | |
uses: actions/checkout@v4 | |
with: | |
path: subprojects/libcsp | |
- name: Build it | |
run: | | |
meson setup builddir && ninja -C builddir | |
- name: Run it | |
run: builddir/demo |