forked from mcu-tools/mcuboot
-
Notifications
You must be signed in to change notification settings - Fork 0
39 lines (36 loc) · 796 Bytes
/
mynewt.yaml
File metadata and controls
39 lines (36 loc) · 796 Bytes
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
35
36
37
38
39
# For development, trigger this on any push.
on:
push:
branches:
- main
pull_request:
name: Mynewt
concurrency:
group: mynewt-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
environment:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: actions/setup-go@v3
with:
go-version: 'stable'
- name: Print the environment
run: |
uname -a
lscpu
free
pwd
- name: Signed commit check
if: ${{ github.event_name == 'pull_request' }}
run: |
./ci/check-signed-off-by.sh
- name: Mynewt install
run: |
./ci/mynewt_install.sh
- name: Mynewt run
run: |
./ci/mynewt_run.sh