sensor-watch/.github/workflows/build.yml

28 lines
626 B
YAML
Raw Normal View History

2021-12-05 20:58:44 +08:00
name: Build
2021-12-12 04:29:27 +08:00
on:
pull_request:
push:
branches-ignore:
- gh-pages
2021-12-05 20:58:44 +08:00
jobs:
build:
container:
image: ghcr.io/armmbed/mbed-os-env:latest
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
2021-12-12 03:33:58 +08:00
- name: Compile starter-project app
2021-12-05 20:58:44 +08:00
run: make
2021-12-12 03:33:58 +08:00
working-directory: 'apps/starter-project'
- name: Compile accelerometer-test app
run: make
working-directory: 'apps/accelerometer-test'
2021-12-06 01:37:44 +08:00
- name: Upload UF2
uses: actions/upload-artifact@v2
with:
2021-12-12 04:29:27 +08:00
name: watch.uf2
2021-12-12 03:33:58 +08:00
path: apps/**/build/watch.uf2