Skip to content

Removed sanity checks since they are apparently not necessary #1742

Removed sanity checks since they are apparently not necessary

Removed sanity checks since they are apparently not necessary #1742

Workflow file for this run

name: PlatformIO CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python_version:
- "3.8"
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Setup Python
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python_version }}
- name: Cache
uses: actions/cache@v2
with:
path: |
~/.cache/pip
~/.platformio
key: ${{ runner.os }}-python${{ matrix.python_version }}
- name: Install dependencies
run: |
pip install --upgrade pip
pip install --upgrade platformio
platformio update
# Ethernet library
platformio lib -g install 872
- name: Setup config
run: |
cp BSB_LAN/BSB_LAN_config.h.default BSB_LAN/BSB_LAN_config.h
cp BSB_LAN/BSB_LAN_custom_defs.h.default BSB_LAN/BSB_LAN_custom_defs.h
- name: Run PlatformIO CI
run: platformio ci --board=due ./BSB_LAN