Skip to content

Changes for select mode operation #56

Changes for select mode operation

Changes for select mode operation #56

Workflow file for this run

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
path: ./buildroot/output/images/${{ matrix.defconfig }}-sdcard.img.xz