Skip to content

Commit 4b8cb41

Browse files
committed
2 parents 0d94dc3 + 1adbfd7 commit 4b8cb41

File tree

2 files changed

+6
-44
lines changed

2 files changed

+6
-44
lines changed

.github/workflows/build-esp32.yml

Lines changed: 4 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,9 @@ jobs:
4040
- name: Install Arduino-MySQL
4141
run: ARDUINO_LIBRARY_ENABLE_UNSAFE_INSTALL=true arduino-cli lib install --git-url https://github.com/cotestatnt/Arduino-MySQL
4242

43+
- name: Install Arduino_MFRC522v2
44+
run: ARDUINO_LIBRARY_ENABLE_UNSAFE_INSTALL=true arduino-cli lib install --git-url https://github.com/OSSLibraries/Arduino_MFRC522v2
45+
4346
- name: Checkout
4447
uses: actions/checkout@v4
4548

@@ -173,45 +176,4 @@ jobs:
173176
echo "Building examples/$i..."
174177
echo "============================================================="
175178
PLATFORMIO_SRC_DIR=examples/$i PIO_BOARD=${{ matrix.board }} pio run -e ci-arduino-3-latest
176-
done
177-
178-
# platformio-specific-envs:
179-
# name: ESP32 (pio) - Specific Envs
180-
# runs-on: ubuntu-latest
181-
# strategy:
182-
# fail-fast: false
183-
# matrix:
184-
# env:
185-
# - ci-arduino-3-latest-asynctcp
186-
# - ci-arduino-3-no-json
187-
188-
# steps:
189-
# - name: Checkout
190-
# uses: actions/checkout@v4
191-
192-
# - name: Cache PlatformIO
193-
# uses: actions/cache@v4
194-
# with:
195-
# key: ${{ runner.os }}-pio
196-
# path: |
197-
# ~/.cache/pip
198-
# ~/.platformio
199-
200-
# - name: Python
201-
# uses: actions/setup-python@v5
202-
# with:
203-
# python-version: "3.x"
204-
205-
# - name: Install PIO
206-
# run: |
207-
# python -m pip install --upgrade pip
208-
# pip install --upgrade platformio
209-
210-
# - name: Build Examples
211-
# run: |
212-
# for i in `ls examples`; do
213-
# echo "============================================================="
214-
# echo "Building examples/$i..."
215-
# echo "============================================================="
216-
# PLATFORMIO_SRC_DIR=examples/$i PIO_BOARD=esp32dev pio run -e ${{ matrix.env }}
217-
# done
179+
done

.github/workflows/build-esp8266.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545

4646
- name: Build Examples
4747
run: |
48-
EXCLUDE_EXAMPLES="esp32-cam binaryWebSocket csvLoggerSD"
48+
EXCLUDE_EXAMPLES="esp32-cam binaryWebSocket csvLoggerSD localRFID mysqlRFID"
4949
5050
for i in `ls examples`; do
5151
# skip excluded examples
@@ -94,7 +94,7 @@ jobs:
9494
9595
- name: Build Examples
9696
run: |
97-
EXCLUDE_EXAMPLES="esp32-cam binaryWebSocket csvLoggerSD"
97+
EXCLUDE_EXAMPLES="esp32-cam binaryWebSocket csvLoggerSD localRFID mysqlRFID"
9898
9999
for i in `ls examples`; do
100100
# skip excluded examples

0 commit comments

Comments
 (0)