Moved docs and workflows to avoid conflicts while merging official repo

This commit is contained in:
Valentin V. Bartenev
2026-06-06 20:18:03 +03:00
parent 86154ce8d0
commit b9bd0fc270
19 changed files with 15 additions and 14 deletions
@@ -0,0 +1,39 @@
name: PUSH Build Check
on:
push:
branches: [ develop ]
paths:
- "src/**"
- "examples/**"
- "variants/**"
- "platformio.ini"
- ".github/workflows/meshcoretel-push-build-check.yml"
jobs:
build:
runs-on: ubuntu-latest
env:
OFFICIAL_MESHCORE_VERSION: ${{ vars.OFFICIAL_MESHCORE_VERSION }}
PLATFORMIO_BUILD_FLAGS: -UMQTT_DEBUG
strategy:
fail-fast: false
matrix:
environment:
# ESP32-S3 / core EastMesh targets
- heltec_v4_repeater_mqtt
- LilyGo_TBeam_1W_repeater_mqtt
- T_Beam_S3_Supreme_SX1262_repeater_mqtt
# ESP32-C6
- LilyGo_Tlora_C6_repeater_mqtt
- Xiao_C6_repeater_mqtt
steps:
- name: Clone Repo
uses: actions/checkout@v6
- name: Setup Build Environment
uses: ./.github/actions/setup-build-environment
- name: Build ${{ matrix.environment }}
run: pio run -e ${{ matrix.environment }}