Skip to content

Commit d8efcc3

Browse files
committed
fix(ci): use Debian kernel for forky
Our custom qcom1 kernel is not available for forky. Switch back to the default Debian linux-image-arm64 kernel instead when building for forky. Signed-off-by: Agathe Porte <agathe.porte@oss.qualcomm.com>
1 parent 3b5adfa commit d8efcc3

2 files changed

Lines changed: 16 additions & 0 deletions

File tree

.github/workflows/build-on-pr.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,15 @@ jobs:
2626
fail-fast: false
2727
matrix:
2828
suite: [trixie, forky]
29+
kernelpackage: [linux-image-6.16.7-qcom1++, linux-image-arm64]
30+
exclude:
31+
- suite: trixie
32+
kernelpackage: linux-image-arm64
33+
- suite: forky
34+
kernelpackage: linux-image-6.16.7-qcom1++
2935
uses: ./.github/workflows/debos.yml
3036
with:
3137
suite: ${{ matrix.suite }}
38+
kernelpackage: ${{ matrix.kernelpackage }}
3239
schema-check:
3340
uses: ./.github/workflows/lava-schema-check.yml

.github/workflows/build-on-push.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,16 @@ jobs:
1717
fail-fast: false
1818
matrix:
1919
suite: [trixie, forky]
20+
kernelpackage: [linux-image-6.16.7-qcom1++, linux-image-arm64]
21+
exclude:
22+
- suite: trixie
23+
kernelpackage: linux-image-arm64
24+
- suite: forky
25+
kernelpackage: linux-image-6.16.7-qcom1++
2026
uses: ./.github/workflows/debos.yml
27+
with:
28+
suite: ${{ matrix.suite }}
29+
kernelpackage: ${{ matrix.kernelpackage }}
2130
schema-check:
2231
uses: ./.github/workflows/lava-schema-check.yml
2332
test:

0 commit comments

Comments
 (0)