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.
33 lines
641 B
33 lines
641 B
3 years ago
|
name: Async TCP CI
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches:
|
||
|
- master
|
||
|
- release/*
|
||
|
pull_request:
|
||
|
|
||
|
jobs:
|
||
|
|
||
|
build-arduino:
|
||
|
name: Arduino on ${{ matrix.os }}
|
||
|
runs-on: ${{ matrix.os }}
|
||
|
strategy:
|
||
|
matrix:
|
||
|
os: [ubuntu-latest, macOS-latest]
|
||
|
steps:
|
||
|
- uses: actions/checkout@v1
|
||
|
- name: Build Tests
|
||
|
run: bash ./.github/scripts/on-push.sh 0 1
|
||
|
|
||
|
build-pio:
|
||
|
name: PlatformIO on ${{ matrix.os }}
|
||
|
runs-on: ${{ matrix.os }}
|
||
|
strategy:
|
||
|
matrix:
|
||
|
os: [ubuntu-latest, macOS-latest]
|
||
|
steps:
|
||
|
- uses: actions/checkout@v1
|
||
|
- name: Build Tests
|
||
|
run: bash ./.github/scripts/on-push.sh 1 1
|