File tree Expand file tree Collapse file tree 1 file changed +5
-7
lines changed Expand file tree Collapse file tree 1 file changed +5
-7
lines changed Original file line number Diff line number Diff line change @@ -3,21 +3,19 @@ name: Build
3
3
on :
4
4
push :
5
5
pull_request :
6
- schedule :
7
- - cron : " 0 0 * * *"
8
6
9
7
jobs :
10
8
build :
11
9
strategy :
12
10
fail-fast : false
13
11
matrix :
14
- os : [ubuntu-22.04, macos-13, macos- 14, windows-2022]
12
+ os : [ubuntu-22.04, macos-14, windows-2022]
15
13
runs-on : ${{ matrix.os }}
16
14
steps :
17
15
- name : Checkout
18
16
uses : actions/checkout@v4
19
17
with :
20
- path : example-application
18
+ path : OpenAstroFirmware
21
19
22
20
- name : Set up Python
23
21
uses : actions/setup-python@v5
@@ -27,11 +25,11 @@ jobs:
27
25
- name : Setup Zephyr project
28
26
uses : zephyrproject-rtos/action-zephyr-setup@v1
29
27
with :
30
- app-path : example-application
28
+ app-path : OpenAstroFirmware
31
29
toolchains : arm-zephyr-eabi
32
30
33
31
- name : Build firmware
34
- working-directory : example-application
32
+ working-directory : OpenAstroFirmware
35
33
shell : bash
36
34
run : |
37
35
if [ "${{ runner.os }}" = "Windows" ]; then
40
38
west twister -T app -v --inline-logs --integration $EXTRA_TWISTER_FLAGS
41
39
42
40
- name : Twister Tests
43
- working-directory : example-application
41
+ working-directory : OpenAstroFirmware
44
42
shell : bash
45
43
run : |
46
44
if [ "${{ runner.os }}" = "Windows" ]; then
You can’t perform that action at this time.
0 commit comments