ESP32-PaxCounter/.github/workflows/build.yml

63 lines
1.8 KiB
YAML
Raw Normal View History

2022-10-27 12:34:43 +02:00
name: PlatformIO CI
on:
pull_request:
push:
2022-10-27 13:34:26 +02:00
branches:
- master
2022-11-01 11:20:17 +01:00
workflow_dispatch:
2022-10-27 12:34:43 +02:00
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
2022-10-27 13:57:15 +02:00
include:
- os: ubuntu-latest
path: ~/.cache/pip
platformio-path: ~/.platformio
- os: macos-latest
path: ~/Library/Caches/pip
platformio-path: ~/Library/Caches/platformio
- os: windows-latest
path: ~\AppData\Local\pip\Cache
platformio-path: ~\AppData\Local\platformio\Cache
2022-11-01 11:20:17 +01:00
board: [heltecv2.h,heltecv21.h,ttgov21new.h]
runs-on: ${{ matrix.os }}
2022-10-27 12:34:43 +02:00
steps:
- uses: actions/checkout@v3
- name: Cache pip
uses: actions/cache@v3
2022-10-27 12:34:43 +02:00
with:
2022-10-27 13:57:15 +02:00
path: ${{ matrix.path }}
2022-10-27 12:34:43 +02:00
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Cache PlatformIO
uses: actions/cache@v3
2022-10-27 12:34:43 +02:00
with:
2022-10-27 13:57:15 +02:00
path: ${{ matrix.platformio-path }}
2022-10-27 12:34:43 +02:00
key: ${{ runner.os }}-${{ hashFiles('**/lockfiles') }}
- name: Set up Python
uses: actions/setup-python@v4
2022-10-27 12:34:43 +02:00
with:
2022-10-27 13:20:19 +02:00
python-version: "3.9.13"
2022-10-27 12:34:43 +02:00
- name: Install PlatformIO
run: |
python -m pip install --upgrade pip
pip install --upgrade platformio
- name: Copy of necessary files
run: |
cp platformio_orig.ini platformio.ini
cp src/loraconf_sample.h src/loraconf.h
cp src/ota_sample.conf src/ota.conf
cp src/paxcounter_orig.conf src/paxcounter.conf
2022-11-01 11:20:17 +01:00
- name: Clean
run: pio run -t clean -e ci
- name: Run PlatformIO Test
env:
CI_HALFILE: ${{ matrix.board }}
run: pio run -e ci