You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
847 B
35 lines
847 B
3 years ago
|
name: ESP Async Web Server CI
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches:
|
||
|
- master
|
||
|
- release/*
|
||
|
pull_request:
|
||
|
|
||
|
jobs:
|
||
|
|
||
|
build-arduino:
|
||
|
name: Arduino for ${{ matrix.board }} on ${{ matrix.os }}
|
||
|
runs-on: ${{ matrix.os }}
|
||
|
strategy:
|
||
|
matrix:
|
||
|
os: [ubuntu-latest, windows-latest, macOS-latest]
|
||
|
board: [esp32, esp8266]
|
||
|
steps:
|
||
|
- uses: actions/checkout@v1
|
||
|
- name: Build Tests
|
||
|
run: bash ./.github/scripts/on-push.sh ${{ matrix.board }} 0 1
|
||
|
|
||
|
# build-pio:
|
||
|
# name: PlatformIO for ${{ matrix.board }} on ${{ matrix.os }}
|
||
|
# runs-on: ${{ matrix.os }}
|
||
|
# strategy:
|
||
|
# matrix:
|
||
|
# os: [ubuntu-latest, windows-latest, macOS-latest]
|
||
|
# board: [esp32, esp8266]
|
||
|
# steps:
|
||
|
# - uses: actions/checkout@v1
|
||
|
# - name: Build Tests
|
||
|
# run: bash ./.github/scripts/on-push.sh ${{ matrix.board }} 1 1
|