Skip to content

Commit

Permalink
github: workflows: Only build on Linux
Browse files Browse the repository at this point in the history
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]>
  • Loading branch information
jhedberg committed Oct 30, 2024
1 parent cc7ea0d commit 6bac851
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 10 deletions.
6 changes: 1 addition & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,7 @@ on:

jobs:
build:
strategy:
fail-fast: false
matrix:
os: [ubuntu-22.04, macos-14, windows-2022]
runs-on: ${{ matrix.os }}
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down
6 changes: 1 addition & 5 deletions .github/workflows/upstream-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,7 @@ on:

jobs:
build:
strategy:
fail-fast: false
matrix:
os: [ubuntu-22.04, macos-14, windows-2022]
runs-on: ${{ matrix.os }}
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down

0 comments on commit 6bac851

Please sign in to comment.