Skip to content

Commit 05f4a4a

Browse files
authored
Update build-esp32.yml
1 parent 2a11346 commit 05f4a4a

1 file changed

Lines changed: 87 additions & 87 deletions

File tree

.github/workflows/build-esp32.yml

Lines changed: 87 additions & 87 deletions
Original file line numberDiff line numberDiff line change
@@ -51,95 +51,95 @@ jobs:
5151
arduino-cli compile --library . --warnings none -b esp32:esp32:esp32 "examples/$i/$i.ino"
5252
done
5353
54-
platformio-esp32-arduino2:
55-
name: ESP32 (pio) - Arduino 2
56-
runs-on: ubuntu-latest
57-
strategy:
58-
fail-fast: false
59-
matrix:
60-
board:
61-
- esp32dev
62-
- esp32-s3-devkitc-1
63-
64-
steps:
65-
- name: Checkout
66-
uses: actions/checkout@v4
67-
68-
- name: Cache PlatformIO
69-
uses: actions/cache@v4
70-
with:
71-
key: ${{ runner.os }}-pio
72-
path: |
73-
~/.cache/pip
74-
~/.platformio
75-
76-
- name: Python
77-
uses: actions/setup-python@v5
78-
with:
79-
python-version: "3.x"
80-
81-
- name: Install PIO
82-
run: |
83-
python -m pip install --upgrade pip
84-
pip install --upgrade platformio
85-
86-
- name: Build Examples
87-
run: |
88-
for i in `ls examples`; do
89-
echo "============================================================="
90-
echo "Building examples/$i..."
91-
echo "============================================================="
92-
PLATFORMIO_SRC_DIR=examples/$i PIO_BOARD=${{ matrix.board }} pio run -e ci-arduino-2
93-
done
94-
95-
platformio-esp32-arduino-3:
96-
name: ESP32 (pio) - Arduino 3
97-
runs-on: ubuntu-latest
98-
strategy:
99-
fail-fast: false
100-
matrix:
101-
board:
102-
- esp32dev
103-
- esp32-s3-devkitc-1
104-
105-
steps:
106-
- name: Checkout
107-
uses: actions/checkout@v4
108-
109-
- name: Cache PlatformIO
110-
uses: actions/cache@v4
111-
with:
112-
key: ${{ runner.os }}-pio
113-
path: |
114-
~/.cache/pip
115-
~/.platformio
116-
117-
- name: Python
118-
uses: actions/setup-python@v5
119-
with:
120-
python-version: "3.x"
121-
122-
- name: Install PIO
123-
run: |
124-
python -m pip install --upgrade pip
125-
pip install --upgrade platformio
126-
127-
- name: Build Examples
128-
run: |
129-
EXCLUDE_EXAMPLES="ESP32-CAM ESP32-CAM-PIR ESP_OTA Ethernet advanced echoBot_UnoR4 echoBot_wifiNINA"
54+
# platformio-esp32-arduino2:
55+
# name: ESP32 (pio) - Arduino 2
56+
# runs-on: ubuntu-latest
57+
# strategy:
58+
# fail-fast: false
59+
# matrix:
60+
# board:
61+
# - esp32dev
62+
# - esp32-s3-devkitc-1
63+
64+
# steps:
65+
# - name: Checkout
66+
# uses: actions/checkout@v4
67+
68+
# - name: Cache PlatformIO
69+
# uses: actions/cache@v4
70+
# with:
71+
# key: ${{ runner.os }}-pio
72+
# path: |
73+
# ~/.cache/pip
74+
# ~/.platformio
75+
76+
# - name: Python
77+
# uses: actions/setup-python@v5
78+
# with:
79+
# python-version: "3.x"
80+
81+
# - name: Install PIO
82+
# run: |
83+
# python -m pip install --upgrade pip
84+
# pip install --upgrade platformio
85+
86+
# - name: Build Examples
87+
# run: |
88+
# for i in `ls examples`; do
89+
# echo "============================================================="
90+
# echo "Building examples/$i..."
91+
# echo "============================================================="
92+
# PLATFORMIO_SRC_DIR=examples/$i PIO_BOARD=${{ matrix.board }} pio run -e ci-arduino-2
93+
# done
94+
95+
# platformio-esp32-arduino-3:
96+
# name: ESP32 (pio) - Arduino 3
97+
# runs-on: ubuntu-latest
98+
# strategy:
99+
# fail-fast: false
100+
# matrix:
101+
# board:
102+
# - esp32dev
103+
# - esp32-s3-devkitc-1
104+
105+
# steps:
106+
# - name: Checkout
107+
# uses: actions/checkout@v4
108+
109+
# - name: Cache PlatformIO
110+
# uses: actions/cache@v4
111+
# with:
112+
# key: ${{ runner.os }}-pio
113+
# path: |
114+
# ~/.cache/pip
115+
# ~/.platformio
116+
117+
# - name: Python
118+
# uses: actions/setup-python@v5
119+
# with:
120+
# python-version: "3.x"
121+
122+
# - name: Install PIO
123+
# run: |
124+
# python -m pip install --upgrade pip
125+
# pip install --upgrade platformio
126+
127+
# - name: Build Examples
128+
# run: |
129+
# EXCLUDE_EXAMPLES="ESP32-CAM ESP32-CAM-PIR ESP_OTA Ethernet advanced echoBot_UnoR4 echoBot_wifiNINA"
130130

131-
for i in `ls examples`; do
132-
# skip excluded examples
133-
if [[ $EXCLUDE_EXAMPLES == *"$i"* ]]; then
134-
echo "Skipping: $i"
135-
continue
136-
fi
131+
# for i in `ls examples`; do
132+
# # skip excluded examples
133+
# if [[ $EXCLUDE_EXAMPLES == *"$i"* ]]; then
134+
# echo "Skipping: $i"
135+
# continue
136+
# fi
137137

138-
echo "============================================================="
139-
echo "Building examples/$i..."
140-
echo "============================================================="
141-
PLATFORMIO_SRC_DIR=examples/$i PIO_BOARD=${{ matrix.board }} pio run -e ci-arduino-3
142-
done
138+
# echo "============================================================="
139+
# echo "Building examples/$i..."
140+
# echo "============================================================="
141+
# PLATFORMIO_SRC_DIR=examples/$i PIO_BOARD=${{ matrix.board }} pio run -e ci-arduino-3
142+
# done
143143

144144
platformio-esp32-arduino-latest:
145145
name: ESP32 (pio) - Arduino Latest

0 commit comments

Comments
 (0)