Minor styling changes in some init scripts #130
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: Makefile CI | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
strategy: | |
matrix: | |
defconfig: | |
- raspberrypi0w | |
- raspberrypizero2w | |
- raspberrypi4 | |
- raspberrypi3a | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Setup config | |
run: make BR2_EXTERNAL=../aa_wireless_dongle/ ${{ matrix.defconfig }}_defconfig | |
working-directory: ./buildroot | |
- name: Build | |
run: make | |
working-directory: ./buildroot | |
- name: Compress sdcard.img | |
run: xz -c sdcard.img > ${{ matrix.defconfig }}-sdcard.img.xz | |
working-directory: ./buildroot/output/images | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: WirelessAndroidAutoDongle-${{ matrix.defconfig }} | |
path: ./buildroot/output/images/${{ matrix.defconfig }}-sdcard.img.xz | |
merge: | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- uses: actions/upload-artifact/merge@v4 | |
with: | |
name: WirelessAndroidAutoDongle-all |