Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 19 additions & 6 deletions .github/workflows/buildtest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,6 @@ jobs:
steps:
- uses: actions/checkout@v3

- name: Fetch kconfig
uses: actions/checkout@v3
with:
repository: 'thesofproject/kconfig'
path: 'kconfig'

- name: Install libelf
run: |
sudo apt update
Expand Down Expand Up @@ -70,6 +64,25 @@ jobs:
make sound/ W=1
make drivers/soundwire/ W=1

gcc-sof-x86_64-W1-allmodconfig:
name: "GCC build X86_64 with W=1 allmodconfig"
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3

- name: Install libelf
run: |
sudo apt update
sudo apt install -y libelf-dev

- name: build start
run: |
export ARCH=x86_64 KCFLAGS="-Wall -Werror"
export MAKEFLAGS=j"$(nproc)"
make allmodconfig
make sound/soc/sof/ W=1
make drivers/soundwire/ W=1

gcc-sof-x86_64:
name: "GCC build X86_64"
runs-on: ubuntu-20.04
Expand Down