diff options
author | Han Gao <gaohan@iscas.ac.cn> | 2024-01-22 23:27:00 +0800 |
---|---|---|
committer | Han Gao/Revy/Rabenda <rabenda.cn@gmail.com> | 2024-01-24 00:00:18 +0800 |
commit | 5dd8bce9353cafd0c6f38c24d4bf8dce342f7b22 (patch) | |
tree | 44fe30ec09f24049ec99ce1fa9ad72296dcb6f67 | |
parent | de8dcffdd949b106b7f4a100016ec253581ab05d (diff) |
ci: add lc4a mainline dt name support
Signed-off-by: Han Gao <gaohan@iscas.ac.cn>
-rw-r--r-- | .github/workflows/build.yml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index bfa9f998..9ba95cfa 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -103,6 +103,18 @@ jobs: sed -i 's#thead/light-lpi4a-16gb.dtb#thead/th1520-lichee-pi-4a-16g.dtb#' .config make -j$(nproc) find . -name "u-boot-with-spl.bin" | xargs -I{} cp -av {} ${GITHUB_WORKSPACE}/output/u-boot-with-spl-lpi4a-16g-main.bin + + make clean + make light_lpi4a_cluster_defconfig + sed -i 's#thead/light-lpi4a-cluster.dtb#thead/th1520-lichee-cluster-4a.dtb#' .config + make -j$(nproc) + find . -name "u-boot-with-spl.bin" | xargs -I{} cp -av {} ${GITHUB_WORKSPACE}/output/u-boot-with-spl-lc4a-main.bin + + make clean + make light_lpi4a_cluster_16g_defconfig + sed -i 's#thead/light-lpi4a-cluster-16gb.dtb#thead/th1520-lichee-cluster-4a-16g.dtb#' .config + make -j$(nproc) + find . -name "u-boot-with-spl.bin" | xargs -I{} cp -av {} ${GITHUB_WORKSPACE}/output/u-boot-with-spl-lc4a-16g-main.bin popd tree ${GITHUB_WORKSPACE}/output |