2020-11-29 02:05:45 -05:00
|
|
|
name: esp8266 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/esp8266/**'
|
|
|
|
|
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:
|
2023-09-04 15:42:14 -04:00
|
|
|
- uses: actions/checkout@v4
|
2020-11-29 02:05:45 -05:00
|
|
|
- name: Install packages
|
2020-12-13 21:05:43 -05:00
|
|
|
run: source tools/ci.sh && ci_esp8266_setup && ci_esp8266_path >> $GITHUB_PATH
|
2020-11-29 02:05:45 -05:00
|
|
|
- name: Build
|
|
|
|
run: source tools/ci.sh && ci_esp8266_build
|