[Software] Removed the RPI_USERLAND Buildroot package, it is no more … #88
This file contains hidden or 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: Buildroot build | |
on: [push] | |
jobs: | |
buildroot_build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: '0' | |
submodules: 'recursive' | |
- name: Buildroot distribution build | |
run: | | |
make -C Software/buildroot BR2_EXTERNAL=$(realpath .)/Software/cyclope cyclope_defconfig | |
make -C Software/buildroot |