[no ci] Workflow: initial allwinner support (#1591)

pull/1592/head
viktorxda 2024-10-27 16:59:39 +01:00 committed by GitHub
parent 400b43fd25
commit adf80ead75
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 13 additions and 3 deletions

View File

@ -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"}

View File

@ -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

View File

@ -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