2020-11-29 02:05:45 -05:00
|
|
|
name: teensy port
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
pull_request:
|
|
|
|
paths:
|
|
|
|
- '.github/workflows/*.yml'
|
|
|
|
- 'tools/**'
|
|
|
|
- 'py/**'
|
|
|
|
- 'extmod/**'
|
2023-02-16 20:33:13 -05:00
|
|
|
- 'shared/**'
|
2020-11-29 02:05:45 -05:00
|
|
|
- 'lib/**'
|
|
|
|
- 'drivers/**'
|
|
|
|
- 'ports/teensy/**'
|
|
|
|
|
2022-12-13 13:57:34 -05:00
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
2020-11-29 02:05:45 -05:00
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-11-10 10:50:38 -05:00
|
|
|
- uses: actions/checkout@v3
|
2020-11-29 02:05:45 -05:00
|
|
|
- name: Install packages
|
|
|
|
run: source tools/ci.sh && ci_teensy_setup
|
|
|
|
- name: Build
|
|
|
|
run: source tools/ci.sh && ci_teensy_build
|