diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e22fc08f..46f041e8 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -146,6 +146,9 @@ jobs: - {"platform": "gk7205v300", "release": "ultimate"} - {"platform": "gk7605v100", "release": "lite"} + # Allwinner + - {"platform": "v851s", "release": "lite"} + # Fullhan - {"platform": "fh8852v100", "release": "lite"} - {"platform": "fh8852v200", "release": "lite"} diff --git a/.github/workflows/image.yml b/.github/workflows/image.yml index c59f472e..a18d9628 100644 --- a/.github/workflows/image.yml +++ b/.github/workflows/image.yml @@ -7,6 +7,7 @@ on: env: SIGMASTAR: ssc30kd ssc30kq ssc325 ssc333 ssc335 ssc335de ssc337 ssc337de ssc338q ssc377 ssc377d ssc377de ssc378de INGENIC: t10 t10l t20 t20l t20x t21n t30a t30a1 t30l t30n t30x t31a t31al t31l t31lc t31n t31x + ALLWINNER: v851s jobs: toolchain: @@ -42,7 +43,7 @@ jobs: echo -e "Created: $release\n" } - for soc in $SIGMASTAR; do + for soc in $SIGMASTAR $ALLWINNER; do create $soc $soc lite create $soc $soc ultimate done diff --git a/.github/workflows/uboot.yml b/.github/workflows/uboot.yml index 16ae8732..9b077a7a 100644 --- a/.github/workflows/uboot.yml +++ b/.github/workflows/uboot.yml @@ -12,15 +12,21 @@ jobs: sudo apt-get update sudo apt-get install gcc-arm-linux-gnueabi gcc-mipsel-linux-gnu u-boot-tools lzop + - name: Allwinner + run: | + git clone https://github.com/openipc/u-boot-allwinner --depth 1 + cd u-boot-allwinner + bash build.sh + - name: Ingenic run: | - git clone https://github.com/openipc/u-boot-ingenic.git --depth 1 + git clone https://github.com/openipc/u-boot-ingenic --depth 1 cd u-boot-ingenic bash build.sh - name: Sigmastar run: | - git clone https://github.com/openipc/u-boot-sigmastar.git --depth 1 + git clone https://github.com/openipc/u-boot-sigmastar --depth 1 cd u-boot-sigmastar bash build.sh