mirror of
https://github.com/rstrouse/ESPSomfy-RTS.git
synced 2026-04-20 11:02:14 +02:00
tidier .gitignore
This commit is contained in:
commit
41270fffb8
3 changed files with 3 additions and 53 deletions
51
.github/workflows/ci.yaml
vendored
51
.github/workflows/ci.yaml
vendored
|
|
@ -1,51 +0,0 @@
|
||||||
name: ESPSomfy-RTS
|
|
||||||
|
|
||||||
on: [push, pull_request]
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
build:
|
|
||||||
name: ${{ matrix.name }}
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
|
|
||||||
strategy:
|
|
||||||
fail-fast: false
|
|
||||||
matrix:
|
|
||||||
include:
|
|
||||||
- env: esp32dev
|
|
||||||
name: ESP32
|
|
||||||
- env: esp32c3
|
|
||||||
name: ESP32-C3
|
|
||||||
- env: esp32s3
|
|
||||||
name: ESP32-S3
|
|
||||||
- env: esp32c6
|
|
||||||
name: ESP32-C6
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: Check out code
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
|
|
||||||
- name: Set up Python
|
|
||||||
uses: actions/setup-python@v5
|
|
||||||
with:
|
|
||||||
python-version: "3.12"
|
|
||||||
|
|
||||||
- name: Install PlatformIO
|
|
||||||
run: pip install platformio
|
|
||||||
|
|
||||||
- name: Build ${{ matrix.name }}
|
|
||||||
run: pio run -e ${{ matrix.env }}
|
|
||||||
|
|
||||||
- name: Build LittleFS image
|
|
||||||
run: pio run -e ${{ matrix.env }} -t buildfs
|
|
||||||
|
|
||||||
- name: Upload firmware
|
|
||||||
uses: actions/upload-artifact@v4
|
|
||||||
with:
|
|
||||||
name: ${{ matrix.name }}
|
|
||||||
path: |
|
|
||||||
.pio/build/${{ matrix.env }}/firmware.bin
|
|
||||||
.pio/build/${{ matrix.env }}/firmware.elf
|
|
||||||
.pio/build/${{ matrix.env }}/partitions.bin
|
|
||||||
.pio/build/${{ matrix.env }}/bootloader.bin
|
|
||||||
.pio/build/${{ matrix.env }}/littlefs.bin
|
|
||||||
retention-days: 5
|
|
||||||
2
.gitignore
vendored
2
.gitignore
vendored
|
|
@ -10,7 +10,7 @@ debug.cfg
|
||||||
esp32.vsd
|
esp32.vsd
|
||||||
esp32s3.svd
|
esp32s3.svd
|
||||||
|
|
||||||
# Build and Output Folders
|
# Build, Logs and Output Folders
|
||||||
build/
|
build/
|
||||||
data/
|
data/
|
||||||
logs/
|
logs/
|
||||||
|
|
|
||||||
|
|
@ -5,6 +5,7 @@
|
||||||
#ifndef configsettings_h
|
#ifndef configsettings_h
|
||||||
#define configsettings_h
|
#define configsettings_h
|
||||||
#include "WResp.h"
|
#include "WResp.h"
|
||||||
|
|
||||||
#ifndef FW_VERSION
|
#ifndef FW_VERSION
|
||||||
#define FW_VERSION "v0.0.0" // Fallback if app_version.py script fails
|
#define FW_VERSION "v0.0.0" // Fallback if app_version.py script fails
|
||||||
#endif
|
#endif
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue