Skip to content

Commit

Permalink
chore: commit test build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
SQ2CPA committed Mar 22, 2024
1 parent 7897e9a commit a44c6ca
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ jobs:
- "ttgo-t-beam-v1"
- "ttgo-t-beam-v1_SX1268"
- "ttgo-t-beam-v1_2_SX1262"
# - "heltec_wireless_stick_lite" # NOT FULLY TESTED
- "heltec_wireless_stick"
- "heltec_wireless_stick_lite"
steps:
- uses: actions/checkout@v3

Expand Down
40 changes: 40 additions & 0 deletions .github/workflows/commit.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: Commit Test Build

on:
push:
branches:
- '*'

jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
target:
- "ttgo-lora32-v21"
- "heltec-lora32-v2"
- "heltec_wifi_lora_32_V3"
- "ESP32_DIY_LoRa"
- "ESP32_DIY_1W_LoRa"
- "ttgo-t-beam-v1_2"
- "ttgo-t-beam-v1"
- "ttgo-t-beam-v1_SX1268"
- "ttgo-t-beam-v1_2_SX1262"
- "heltec_wireless_stick"
- "heltec_wireless_stick_lite"
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: Build FS
run: pio run --target buildfs -e ${{ matrix.target }}

0 comments on commit a44c6ca

Please sign in to comment.