mirror of
https://github.com/revyos/th1520-vendor-uboot.git
synced 2026-09-10 11:25:17 +02:00
88 lines
3.3 KiB
YAML
88 lines
3.3 KiB
YAML
name: thead-u-boot-build
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: "0 2 * * *"
|
|
|
|
env:
|
|
xuetie_toolchain: https://occ-oss-prod.oss-cn-hangzhou.aliyuncs.com/resource//1663142514282
|
|
toolchain_file_name: Xuantie-900-gcc-linux-5.10.4-glibc-x86_64-V2.6.1-20220906.tar.gz
|
|
ARCH: riscv
|
|
|
|
jobs:
|
|
build:
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
include:
|
|
- name: thead-gcc
|
|
toolchain_tripe: riscv64-unknown-linux-gnu-
|
|
- name: gcc-12
|
|
toolchain_tripe: riscv64-linux-gnu-
|
|
|
|
runs-on: ubuntu-22.04
|
|
env:
|
|
CROSS_COMPILE: ${{ matrix.toolchain_tripe }}
|
|
|
|
steps:
|
|
- name: Install software
|
|
run: |
|
|
sudo apt update && \
|
|
sudo apt install -y gdisk dosfstools g++-12-riscv64-linux-gnu build-essential \
|
|
libncurses-dev gawk flex bison openssl libssl-dev tree \
|
|
dkms libelf-dev libudev-dev libpci-dev libiberty-dev autoconf device-tree-compiler
|
|
sudo update-alternatives --install \
|
|
/usr/bin/riscv64-linux-gnu-gcc riscv64-gcc /usr/bin/riscv64-linux-gnu-gcc-12 10
|
|
sudo update-alternatives --install \
|
|
/usr/bin/riscv64-linux-gnu-g++ riscv64-g++ /usr/bin/riscv64-linux-gnu-g++-12 10
|
|
|
|
- name: Checkout uboot
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Configure toolchains
|
|
run: |
|
|
mkdir output
|
|
wget ${xuetie_toolchain}/${toolchain_file_name}
|
|
tar -xvf ${toolchain_file_name} -C /opt
|
|
|
|
- name: uboot compile
|
|
run: |
|
|
export PATH="/opt/Xuantie-900-gcc-linux-5.10.4-glibc-x86_64-V2.6.1/bin:$PATH"
|
|
|
|
pushd $PWD
|
|
make light_lpi4a_16g_defconfig
|
|
make -j$(nproc)
|
|
find . -name "u-boot-with-spl.bin" | xargs -I{} cp -av {} ${GITHUB_WORKSPACE}/output/u-boot-with-spl-lpi4a-16g.bin
|
|
make clean
|
|
make light_lpi4a_defconfig
|
|
make -j$(nproc)
|
|
find . -name "u-boot-with-spl.bin" | xargs -I{} cp -av {} ${GITHUB_WORKSPACE}/output/u-boot-with-spl-lpi4a.bin
|
|
make clean
|
|
make light_beagle_defconfig
|
|
make -j$(nproc)
|
|
find . -name "u-boot-with-spl.bin" | xargs -I{} cp -av {} ${GITHUB_WORKSPACE}/output/u-boot-with-spl-beagle.bin
|
|
make clean
|
|
make light_a_val_defconfig
|
|
make -j$(nproc)
|
|
find . -name "u-boot-with-spl.bin" | xargs -I{} cp -av {} ${GITHUB_WORKSPACE}/output/u-boot-with-spl-vala.bin
|
|
make clean
|
|
make light_milkv_meles_dualrank_defconfig
|
|
make -j$(nproc)
|
|
find . -name "u-boot-with-spl.bin" | xargs -I{} cp -av {} ${GITHUB_WORKSPACE}/output/u-boot-with-spl-meles.bin
|
|
make clean
|
|
make light_milkv_meles_singlerank_defconfig
|
|
make -j$(nproc)
|
|
find . -name "u-boot-with-spl.bin" | xargs -I{} cp -av {} ${GITHUB_WORKSPACE}/output/u-boot-with-spl-meles-4g.bin
|
|
popd
|
|
tree ${GITHUB_WORKSPACE}/output
|
|
|
|
- name: 'Upload Artifact'
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: thead-u-uboot-${{ matrix.name }}
|
|
path: output/*.bin
|
|
retention-days: 30
|