Skip to content

Commit

Permalink
[ci] Add empty IPL files for rcar build
Browse files Browse the repository at this point in the history
We move building IPL's out of zephyr build system. These files should be
deployed externally. As on CI we check only build for rcar devices, create empty
IPL's.

Signed-off-by: Oleksandr Grytsov <[email protected]>
  • Loading branch information
al1img committed Dec 15, 2023
1 parent 4aa1096 commit 360089f
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/workflows/build_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,13 @@ jobs:
strategy:
matrix:
platform:
[rcar_spider, rcar_salvator_xs_m3, rcar_h3ulcb_ca57, native_posix, native_posix_64]
[
rcar_spider,
rcar_salvator_xs_m3,
rcar_h3ulcb_ca57,
native_posix,
native_posix_64,
]

steps:
- name: Checkout
Expand All @@ -39,6 +45,12 @@ jobs:
west update
west zephyr-export
- name: Create IPL files
run: |
mkdir src/prebuilt
touch src/prebuilt/ipl.bin
touch src/prebuilt/ipl.dtb
- name: Build ${{ matrix.platform }}
if: "!startsWith(matrix.platform, 'native')"
run: |
Expand Down

0 comments on commit 360089f

Please sign in to comment.