diff options
| author | Andre Weissflog <floooh@gmail.com> | 2025-08-15 17:53:01 +0200 |
|---|---|---|
| committer | Andre Weissflog <floooh@gmail.com> | 2025-08-15 17:53:01 +0200 |
| commit | 047ded90030086bb77a887582b2d304a01473db8 (patch) | |
| tree | 674a3b222a86bebb8aef49e0e07c61ed6834ac90 /.github | |
| parent | f9296d7a6b0675f3da39e1a29cb2d00ac1d46eae (diff) | |
gen_bindings.yml: remove Windows from the zig test matrix (because of broken package fetch)
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/gen_bindings.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/gen_bindings.yml b/.github/workflows/gen_bindings.yml index 3006788b..37785709 100644 --- a/.github/workflows/gen_bindings.yml +++ b/.github/workflows/gen_bindings.yml @@ -123,7 +123,9 @@ jobs: needs: gen-bindings strategy: matrix: - os: [ubuntu-latest, macos-latest, windows-latest] + # NOTE: don't run test on Windows until zig package fetch is fixed + # os: [ubuntu-latest, macos-latest, windows-latest] + os: [ubuntu-latest, macos-latest] runs-on: ${{matrix.os}} steps: - uses: actions/checkout@main |