Skip to content

Commit

Permalink
Remove windows and macos builds from CI
Browse files Browse the repository at this point in the history
  • Loading branch information
nhynes committed Dec 13, 2023
1 parent 701a879 commit f029506
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 20 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/npm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
arch: [darwin-64, darwin-arm64, linux-64, linux-arm64, windows-64]
# arch: [darwin-64, darwin-arm64, linux-64, linux-arm64, windows-64]
arch: [linux-64, linux-arm64]
steps:
- name: Checkout Repo
uses: actions/checkout@v3
Expand Down
12 changes: 2 additions & 10 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,14 +56,10 @@ jobs:
build:
strategy:
matrix:
os: [ubuntu-20.04, macos-latest, windows-2022]
os: [ubuntu-20.04]
include:
- os-name: linux
os: ubuntu-20.04
- os-name: macOS
os: macos-latest
- os-name: windows
os: windows-2022
runs-on: ${{ matrix.os }}
name: build (${{ matrix.os-name }})
steps:
Expand Down Expand Up @@ -121,14 +117,10 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
arch: [linux-64, darwin-64, windows-64]
arch: [linux-64]
include:
- arch: linux-64
name: Linux-X64
- arch: darwin-64
name: macOS-X64
- arch: windows-64
name: Windows-X64
steps:
- name: Download ${{ matrix.name }}
uses: actions/download-artifact@v3.0.2
Expand Down
9 changes: 0 additions & 9 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@ jobs:
os:
[
{ name : linux, image : ubuntu-20.04 },
{ name : macOS, image : macos-latest },
{ name : windows, image : windows-2022 }
]
config:
[
Expand All @@ -29,13 +27,6 @@ jobs:
# Add an Address Sanitizer (ASAN) build on Linux for additional checking.
- os: { name: linux, image: ubuntu-20.04 }
config: { suffix: -asan, bazel-args: --config=asan }
# Windows has a custom non-debug bazel config.
- os: { name : windows, image : windows-2022 }
config: { suffix: '', bazel-args: --config=windows_no_dbg }
exclude:
# Skip the matrix generated Windows non-debug config to use the one added above.
- os: { name : windows, image : windows-2022 }
config: { suffix: '', bazel-args: '' }
fail-fast: false
runs-on: ${{ matrix.os.image }}
name: test (${{ matrix.os.name }}${{ matrix.config.suffix }})
Expand Down

0 comments on commit f029506

Please sign in to comment.