File tree 2 files changed +40
-0
lines changed
2 files changed +40
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : Build
2
+
3
+ on :
4
+ push :
5
+ pull_request :
6
+
7
+ jobs :
8
+ build :
9
+ strategy :
10
+ fail-fast : false
11
+ matrix :
12
+ board : [mimxrt1024_evk, frdm_mcxn947/mcxn947/cpu0]
13
+ runs-on : ubuntu-latest
14
+ steps :
15
+ - name : Checkout
16
+ uses : actions/checkout@v3
17
+ with :
18
+ path : memfault-zephyr-http-example
19
+
20
+ - name : Set up Python
21
+ uses : actions/setup-python@v4
22
+ with :
23
+ python-version : 3.11
24
+
25
+ - name : Setup Zephyr project
26
+ uses : zephyrproject-rtos/action-zephyr-setup@v1
27
+ with :
28
+ app-path : memfault-zephyr-http-example
29
+ toolchains : arm-zephyr-eabi
30
+
31
+ - name : Run twister
32
+ run : >
33
+ zephyr/scripts/twister
34
+ --platform ${{ matrix.board }}
35
+ --testsuite-root memfault-zephyr-http-example
Original file line number Diff line number Diff line change 5
5
sample :
6
6
description : Memfault HTTP Client Example
7
7
name : memfault-zephyr-http-example
8
+ tests :
9
+ sample.build :
10
+ build_only : true
11
+ extra_configs :
12
+ - CONFIG_MEMFAULT_PROJECT_KEY="dummy"
You can’t perform that action at this time.
0 commit comments