[SKIP SOF-TEST] .github: re-enable rimage workflows #1
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
--- | ||
Check failure on line 1 in .github/workflows/rimage.yml GitHub Actions / rimageInvalid workflow file
|
||
# SPDX-License-Identifier: BSD-3-Clause | ||
# Tools that can save round-trips to github and a lot of time: | ||
# | ||
# yamllint -f parsable this.yml | ||
# pip3 install ruamel.yaml.cmd | ||
# yaml merge-expand this.yml exp.yml && diff -w -u this.yml exp.yml | ||
# | ||
# github.com also has a powerful web editor that can be used without | ||
# committing. | ||
name: rimage | ||
# yamllint disable-line rule:truthy | ||
on: | ||
workflow_dispatch: | ||
pull_request: | ||
paths: | ||
- tools/rimage/** | ||
push: | ||
paths: | ||
- tools/rimage/** | ||
jobs: | ||
# Basic build test | ||
build: | ||
runs-on: ubuntu-22.04 | ||
env: | ||
CMAKE_C_FLAGS: -Werror -Wall -Wmissing-prototypes -Wimplicit-fallthrough=3 | ||
-Wpointer-arith | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: {fetch-depth: 0, filter: tree:0} | ||
- name: install tools | ||
run: sudo apt update && sudo apt install -y ninja-build | ||
- name: build | ||
run: cmake -B build/ -G Ninja | ||
- run: cmake --build build/ | ||
# cppcheck | ||
cppcheck: | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: {fetch-depth: 0, filter: tree:0} | ||
- name: apt install cppcheck | ||
run: sudo apt update && sudo apt-get -y install cppcheck | ||
# TODO enable more types of checks as they are fixed | ||
- name: run cppcheck | ||
run: cppcheck --platform=unix32 --force --max-configs=1024 | ||
--inconclusive --quiet --inline-suppr . |