Skip to content

Commit def0188

Browse files
author
Scott Powell
committed
Merge branch 'dev' into multibyte-paths
2 parents 8737c64 + e6e87fb commit def0188

File tree

3 files changed

+47
-2
lines changed

3 files changed

+47
-2
lines changed
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
name: PR Build Check
2+
3+
on:
4+
pull_request:
5+
branches: [main, dev]
6+
paths:
7+
- 'src/**'
8+
- 'examples/**'
9+
- 'variants/**'
10+
- 'platformio.ini'
11+
- '.github/workflows/pr-build-check.yml'
12+
13+
jobs:
14+
build:
15+
runs-on: ubuntu-latest
16+
strategy:
17+
fail-fast: false
18+
matrix:
19+
environment:
20+
# ESP32-S3 (most common platform)
21+
- Heltec_v3_companion_radio_ble
22+
- Heltec_v3_repeater
23+
- Heltec_v3_room_server
24+
# nRF52
25+
- RAK_4631_companion_radio_ble
26+
- RAK_4631_repeater
27+
- RAK_4631_room_server
28+
# RP2040
29+
- PicoW_repeater
30+
# STM32
31+
- wio-e5-mini_repeater
32+
# ESP32-C6
33+
- LilyGo_Tlora_C6_repeater_
34+
35+
steps:
36+
- name: Clone Repo
37+
uses: actions/checkout@v4
38+
39+
- name: Setup Build Environment
40+
uses: ./.github/actions/setup-build-environment
41+
42+
- name: Build ${{ matrix.environment }}
43+
run: pio run -e ${{ matrix.environment }}

variants/lilygo_tbeam_supreme_SX1262/platformio.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,8 +142,8 @@ build_flags =
142142
-D MAX_CONTACTS=350
143143
-D MAX_GROUP_CHANNELS=40
144144
-D OFFLINE_QUEUE_SIZE=256
145-
-D WIFI_SSID='"Three_CA7C65"'
146-
-D WIFI_PWD='"8hC45a66265eA3w"'
145+
-D WIFI_SSID='"WIFI_SSID"'
146+
-D WIFI_PWD='"Password"'
147147
; -D WIFI_DEBUG_LOGGING=1
148148
; -D MESH_PACKET_LOGGING=8
149149
; -D MESH_DEBUG=1

variants/m5stack_unit_c6l/platformio.ini

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,8 @@ build_flags = ${M5Stack_Unit_C6L.build_flags}
9494
-D MAX_CONTACTS=350
9595
-D MAX_GROUP_CHANNELS=40
9696
-D OFFLINE_QUEUE_SIZE=256
97+
-D ARDUINO_USB_CDC_ON_BOOT=1
98+
-D ARDUINO_USB_MODE=1
9799
build_src_filter = ${M5Stack_Unit_C6L.build_src_filter}
98100
+<helpers/esp32/*.cpp>
99101
-<helpers/esp32/ESPNOWRadio.cpp>

0 commit comments

Comments
 (0)