Merge pull request #285 from vanvught/development #253
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build H3 | |
on: | |
push: | |
branches: | |
- '*' | |
pull_request: | |
branches: | |
- '*' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install arm-none-eabi | |
run: sudo apt install gcc-arm-none-eabi | |
- name: version | |
run: arm-none-eabi-g++ --version | |
- name: Install U-Boot tools | |
run: sudo apt install u-boot-tools | |
- name: make | |
run: | | |
cd scripts | |
./build_h3-firmware.sh |