Skip to content

Commit

Permalink
Update build-u-boot.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
hkint authored Nov 12, 2024
1 parent a6c7c8c commit 4d857b4
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/build-u-boot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@ jobs:
contents: write
actions: write

strategy:
matrix:
board: [ax3000t, ax3000t_an8855]

steps:

- name: Free disk space (Ubuntu)
Expand Down Expand Up @@ -67,8 +71,9 @@ jobs:
- name: Compile U-Boot
id: compile
run: |
cd u-boot && SOC=mt7981 BOARD=ax3000t MULTI_LAYOUT=1 FIXED_MTDPARTS=1 ./build.sh && SOC=mt7981 BOARD=ax3000t-an8855 MULTI_LAYOUT=1 FIXED_MTDPARTS=1 ./build.sh
cd u-boot
SOC=mt7981 BOARD=${{ matrix.board }} MULTI_LAYOUT=1 FIXED_MTDPARTS=1 ./build.sh
echo "FILE_DATE=_$(date +"%Y%m%d%H%M")" >> $GITHUB_ENV
echo "status=success" >> $GITHUB_OUTPUT
Expand Down

0 comments on commit 4d857b4

Please sign in to comment.