From 458658a92319ff95cad8f54d1826ab7950c1e10e Mon Sep 17 00:00:00 2001 From: Frank Wunderlich Date: Tue, 7 Jan 2025 07:46:51 +0100 Subject: [PATCH] ci: add nand build for r3mini --- .github/workflows/build.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b4ad4d0d114..66b23ba1f6d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -170,6 +170,21 @@ jobs: bash build.sh createimg non-interactive rm build.conf + - name: Build for BananaPi-R3Mini (NAND) + run: | + git checkout ${{ env.BRANCH }} + echo -e "board=bpi-r3mini\ndevice=spi-nand" > build.conf + bash build.sh importconfig + bash build.sh build + bash build.sh rename + git checkout build.conf + + git checkout mtk-atf + echo -e "board=bpi-r3mini\ndevice=spim-nand" > build.conf + bash build.sh build + bash build.sh rename + rm build.conf + - name: Build for BananaPi-R4 (SD) run: | git checkout ${{ env.BRANCH }}