-
Notifications
You must be signed in to change notification settings - Fork 1
34 lines (32 loc) · 883 Bytes
/
build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
name: Build
on:
pull_request:
push:
branches-ignore:
- gh-pages
jobs:
build:
container:
image: ghcr.io/armmbed/mbed-os-env:latest
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Bulld DFU utility
run: make
working-directory: 'utils/dfu'
- name: Validate changes on SAM D11
run: make
working-directory: 'tests/blink_samd11'
- name: Validate changes on SAM D21
run: make
working-directory: 'tests/blink_samd21'
- name: Validate changes on SAM D51
run: make
working-directory: 'tests/blink_samd51'
- name: Validate changes on SAM L21
run: make
working-directory: 'tests/blink_saml21'
- name: Validate changes on SAM L22
run: make
working-directory: 'tests/blink_saml22'