Skip to content

Commit

Permalink
[no ci] Workflow: initial allwinner support (#1591)
Browse files Browse the repository at this point in the history
  • Loading branch information
viktorxda authored Oct 27, 2024
1 parent 400b43f commit adf80ea
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"}
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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
Expand Down
10 changes: 8 additions & 2 deletions .github/workflows/uboot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit adf80ea

Please sign in to comment.