Update web.cpp #92
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Firmware build test | |
on: [push,pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
~/.cache/pip | |
~/.platformio/.cache | |
key: ${{ runner.os }}-pio | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.9' | |
- name: Install PlatformIO Core | |
run: pip install --upgrade platformio | |
- name: Install intelhex | |
run: pip install --upgrade intelhex | |
- name: Build NRF firmware | |
run: | | |
cd ARM_Tag_FW/Newton_M3_nRF52811 | |
pio run --environment Newton_M3_29_BWR | |
- name: Build Simple_AP | |
run: | | |
cd ESP32_AP-Flasher | |
pio run --environment Simple_AP | |
pio run --target buildfs --environment Simple_AP | |
- name: Build OpenEPaperLink_Mini_AP | |
run: | | |
cd ESP32_AP-Flasher | |
pio run --environment OpenEPaperLink_Mini_AP | |
pio run --target buildfs --environment OpenEPaperLink_Mini_AP | |
# - name: Build OpenEPaperLink_Nano_AP | |
# run: | | |
# cd ESP32_AP-Flasher | |
# pio run --environment OpenEPaperLink_Nano_AP | |
# pio run --target buildfs --environment OpenEPaperLink_Nano_AP | |
- name: Build OpenEPaperLink_AP_and_Flasher | |
run: | | |
cd ESP32_AP-Flasher | |
pio run --environment OpenEPaperLink_AP_and_Flasher | |
pio run --target buildfs --environment OpenEPaperLink_AP_and_Flasher | |
# - name: Build Wemos_d1_mini32_AP | |
# run: | | |
# cd ESP32_AP-Flasher | |
# pio run --environment Wemos_d1_mini32_AP | |
# pio run --target buildfs --environment Wemos_d1_mini32_AP | |
# - name: Build M5Stack_Core_ONE_AP | |
# run: | | |
# cd ESP32_AP-Flasher | |
# pio run --environment M5Stack_Core_ONE_AP | |
# pio run --target buildfs --environment M5Stack_Core_ONE_AP | |
- name: Build ESP32_S3_16_8_YELLOW_AP] | |
run: | | |
cd ESP32_AP-Flasher | |
pio run --environment ESP32_S3_16_8_YELLOW_AP | |
pio run --target buildfs --environment ESP32_S3_16_8_YELLOW_AP | |
# - name: Build Sonoff_zb_bridge_P_AP | |
# run: | | |
# cd ESP32_AP-Flasher | |
# pio run --environment Sonoff_zb_bridge_P_AP | |
# pio run --target buildfs --environment Sonoff_zb_bridge_P_AP | |
# - name: Build OpenEPaperLink_CC1352P | |
# run: | | |
# cd ESP32_AP-Flasher | |
# pio run --environment OpenEPaperLink_CC1352P | |
# pio run --target buildfs --environment OpenEPaperLink_CC1352P | |
# - name: OutdoorAP | |
# run: | | |
# cd ESP32_AP-Flasher | |
# pio run --environment OutdoorAP | |
# pio run --target buildfs --environment OutdoorAP |