Pipeline2.0 step 7: Make all the code use API to access comp_buffer lists #2098
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: Zephyr LLEXT | |
# 'workflow_dispatch' allows running this workflow manually from the | |
# 'Actions' tab | |
# yamllint disable-line rule:truthy | |
on: [pull_request, workflow_dispatch] | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
platform: [mtl, lnl] | |
steps: | |
- name: free space | |
run: | | |
sudo rm -rf /usr/share/dotnet | |
sudo rm -rf /opt/ghc | |
- name: git clone sof | |
uses: actions/checkout@v4 | |
with: | |
path: ./workspace/sof | |
fetch-depth: 0 # fix git describe | |
filter: 'tree:0' | |
- name: west clones | |
run: pip3 install west && cd workspace/sof/ && west init -l && | |
west update --narrow --fetch-opt=--depth=5 | |
- name: Download docker image && ls /opt/toolchains/ | |
run: cd workspace && ./sof/zephyr/docker-run.sh ls -l /opt/toolchains/ | |
- name: llext build | |
run: | | |
cd workspace && ./sof/zephyr/docker-run.sh /bin/sh -c \ | |
"ln -s /opt/toolchains/zephyr-sdk-* ~/; | |
python sof/scripts/xtensa-build-zephyr.py \ | |
--cmake-args=-DEXTRA_CFLAGS=-Werror \ | |
--cmake-args=-DEXTRA_CXXFLAGS=-Werror \ | |
--cmake-args=-DEXTRA_AFLAGS='-Werror -Wa,--fatal-warnings' \ | |
--cmake-args=--warn-uninitialized \ | |
--overlay=sof/app/configs/${{ matrix.platform }}/modules.conf \ | |
${{ matrix.platform }}" |