mirror of
https://github.com/richonguzman/LoRa_APRS_iGate.git
synced 2026-01-21 08:10:15 +01:00
35 lines
881 B
YAML
35 lines
881 B
YAML
name: Commit Test Build
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- '*'
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
target:
|
|
- name: ttgo-lora32-v21
|
|
chip: esp32
|
|
- name: heltec_wireless_stick
|
|
chip: esp32s3
|
|
- name: heltec_ht-ct62
|
|
chip: esp32c3
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- uses: actions/setup-python@v4
|
|
with:
|
|
python-version: "3.9"
|
|
|
|
- name: Install PlatformIO Core
|
|
run: pip install --upgrade platformio
|
|
|
|
- name: Build target
|
|
run: pio run -e ${{ matrix.target.name }}
|
|
|
|
- name: Build FS
|
|
run: pio run --target buildfs -e ${{ matrix.target.name }} |