Skip to content

Commit 8db7bac

Browse files
Update build.yml to streamline paths and remove unnecessary cron schedule
1 parent 08287c3 commit 8db7bac

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,19 @@ name: Build
33
on:
44
push:
55
pull_request:
6-
schedule:
7-
- cron: "0 0 * * *"
86

97
jobs:
108
build:
119
strategy:
1210
fail-fast: false
1311
matrix:
14-
os: [ubuntu-22.04, macos-13, macos-14, windows-2022]
12+
os: [ubuntu-22.04, macos-14, windows-2022]
1513
runs-on: ${{ matrix.os }}
1614
steps:
1715
- name: Checkout
1816
uses: actions/checkout@v4
1917
with:
20-
path: example-application
18+
path: OpenAstroFirmware
2119

2220
- name: Set up Python
2321
uses: actions/setup-python@v5
@@ -27,11 +25,11 @@ jobs:
2725
- name: Setup Zephyr project
2826
uses: zephyrproject-rtos/action-zephyr-setup@v1
2927
with:
30-
app-path: example-application
28+
app-path: OpenAstroFirmware
3129
toolchains: arm-zephyr-eabi
3230

3331
- name: Build firmware
34-
working-directory: example-application
32+
working-directory: OpenAstroFirmware
3533
shell: bash
3634
run: |
3735
if [ "${{ runner.os }}" = "Windows" ]; then
@@ -40,7 +38,7 @@ jobs:
4038
west twister -T app -v --inline-logs --integration $EXTRA_TWISTER_FLAGS
4139
4240
- name: Twister Tests
43-
working-directory: example-application
41+
working-directory: OpenAstroFirmware
4442
shell: bash
4543
run: |
4644
if [ "${{ runner.os }}" = "Windows" ]; then

0 commit comments

Comments
 (0)