Skip to content

Commit 18c4257

Browse files
committed
github: workflows: Only build on Linux
Upstream should do a good enough job of testing all supported Zephyr SDK OS versions. We can reintroduce macOS and Windows if/when we start doing more advanced things in CI that Zephyr upstream doesn't already do. Signed-off-by: Johan Hedberg <[email protected]>
1 parent 68af8a5 commit 18c4257

File tree

2 files changed

+2
-10
lines changed

2 files changed

+2
-10
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,7 @@ on:
1010

1111
jobs:
1212
build:
13-
strategy:
14-
fail-fast: false
15-
matrix:
16-
os: [ubuntu-22.04, macos-14, windows-2022]
17-
runs-on: ${{ matrix.os }}
13+
runs-on: ubuntu-22.04
1814
steps:
1915
- name: Checkout
2016
uses: actions/checkout@v4

.github/workflows/upstream-build.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,7 @@ on:
66

77
jobs:
88
build:
9-
strategy:
10-
fail-fast: false
11-
matrix:
12-
os: [ubuntu-22.04, macos-14, windows-2022]
13-
runs-on: ${{ matrix.os }}
9+
runs-on: ubuntu-22.04
1410
steps:
1511
- name: Checkout
1612
uses: actions/checkout@v4

0 commit comments

Comments
 (0)