Skip to content

Basic multiple page support for OLED #139

Basic multiple page support for OLED

Basic multiple page support for OLED #139

Workflow file for this run

name: Build
on: [push, pull_request]
jobs:
build:
strategy:
fail-fast: false
matrix:
environments:
- "espgeigerhw"
- "esp32_pulse"
- "esp32_pulse_no_pcnt"
- "esp32_test"
- "esp32_testpulse"
- "esp32_test_gc10"
- "esp32_test_mightyohm"
- "esp32_gc10"
- "esp32_gc10next"
- "esp8266_pulse"
- "esp8266_test"
- "esp8266_testpulse"
- "esp8266_test_gc10"
- "esp8266_test_mightyohm"
- "esp8266_gc10"
- "esp8266_gc10next"
- "esp8266oled_gc10"
- "esp32oled_gc10"
- "esp8266oled_gc10next"
- "esp32oled_gc10next"
- "esp8266oled_pulse"
- "cajoe_gc_esp32"
runs-on: ubuntu-latest
name: Build with PlatformIO
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.x"
- name: Install platformio
run: |
python -m pip install --upgrade pip
pip install platformio
- name: Run PlatformIO
run: platformio run -e ${{ matrix.environments }}
- name: Upload Assets
uses: actions/upload-artifact@v3
with:
name: ${{ matrix.environments }}
path: |
.pio/build/*/firmware.bin
.pio/build/*/partitions.bin
retention-days: 7