Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 18c4257

Browse files
committedOct 30, 2024
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 <johan.hedberg@silabs.com>
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

+1-5
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

+1-5
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)
Please sign in to comment.