Skip to content

Commit

Permalink
workflows: add rt kernel build
Browse files Browse the repository at this point in the history
currently any tests for the rt kernel are missing;
at least try to compile it ...

Signed-off-by: Christoph Ostarek <christoph@zededa.com>
  • Loading branch information
christoph-zededa committed Jul 17, 2023
1 parent 0eaef1b commit 2a61f7f
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,10 @@ jobs:
- name: Build packages
run: |
make V=1 PRUNE=1 ZARCH=${{ matrix.arch }} pkgs
- name: Build PREEMPT_RT kernel
run: |
if: ${{ matrix.arch == 'amd64' }} # because RT only enabled on amd64
make V=1 PRUNE=1 ZARCH=${{ matrix.arch }} PREEMPT_RT=1 pkg/kernel
- name: Post package report
run: |
echo Disk usage
Expand Down

0 comments on commit 2a61f7f

Please sign in to comment.