mirror of https://github.com/OpenIPC/firmware.git
[no ci] Workflow: initial allwinner support (#1591)
parent
400b43fd25
commit
adf80ead75
|
@ -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"}
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue