Skip to content

Commit

Permalink
rename workflow files
Browse files Browse the repository at this point in the history
Signed-off-by: Jonas Karlman <jonas@kwiboo.se>
  • Loading branch information
Kwiboo committed Jan 24, 2025
1 parent b6f0289 commit dc74b47
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
14 changes: 9 additions & 5 deletions .github/workflows/rk3528.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: Build u-boot for RK3576
run-name: u-boot ${{ inputs.uboot_ref }} for RK3576
name: Build u-boot for RK3528
run-name: u-boot ${{ inputs.uboot_ref }} for RK3528
on:
workflow_dispatch:
inputs:
Expand All @@ -24,9 +24,13 @@ jobs:
boards:
[
{
"name": "rk3576-generic",
"name": "rk3528-generic",
"config": "generic-rk3528_defconfig",
},
{
"name": "rk3528-radxa-e20c",
"config": "radxa-e20c-rk3528_defconfig",
},
]

steps:
Expand All @@ -53,8 +57,8 @@ jobs:
id: build
if: ${{ hashFiles(format('u-boot/configs/{0}', matrix.boards.config)) != '' }}
run: |
export ROCKCHIP_TPL=../rkbin/$(confget -f rkbin/RKBOOT/RK3576MINIALL.ini -s LOADER_OPTION FlashData)
export BL31=../rkbin/$(confget -f rkbin/RKTRUST/RK3576TRUST.ini -s BL31_OPTION PATH)
export ROCKCHIP_TPL=../rkbin/$(confget -f rkbin/RKBOOT/RK3528MINIALL.ini -s LOADER_OPTION FlashData)
export BL31=../rkbin/$(confget -f rkbin/RKTRUST/RK3528TRUST.ini -s BL31_OPTION PATH)
cd u-boot
make mrproper
make ${{ matrix.boards.config }}
Expand Down
14 changes: 5 additions & 9 deletions .github/workflows/rk3576.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: Build u-boot for RK3528
run-name: u-boot ${{ inputs.uboot_ref }} for RK3528
name: Build u-boot for RK3576
run-name: u-boot ${{ inputs.uboot_ref }} for RK3576
on:
workflow_dispatch:
inputs:
Expand All @@ -24,13 +24,9 @@ jobs:
boards:
[
{
"name": "rk3528-generic",
"name": "rk3576-generic",
"config": "generic-rk3528_defconfig",
},
{
"name": "rk3528-radxa-e20c",
"config": "radxa-e20c-rk3528_defconfig",
},
]

steps:
Expand All @@ -57,8 +53,8 @@ jobs:
id: build
if: ${{ hashFiles(format('u-boot/configs/{0}', matrix.boards.config)) != '' }}
run: |
export ROCKCHIP_TPL=../rkbin/$(confget -f rkbin/RKBOOT/RK3528MINIALL.ini -s LOADER_OPTION FlashData)
export BL31=../rkbin/$(confget -f rkbin/RKTRUST/RK3528TRUST.ini -s BL31_OPTION PATH)
export ROCKCHIP_TPL=../rkbin/$(confget -f rkbin/RKBOOT/RK3576MINIALL.ini -s LOADER_OPTION FlashData)
export BL31=../rkbin/$(confget -f rkbin/RKTRUST/RK3576TRUST.ini -s BL31_OPTION PATH)
cd u-boot
make mrproper
make ${{ matrix.boards.config }}
Expand Down

0 comments on commit dc74b47

Please # to comment.