Skip to content

Commit

Permalink
Disable wheel tests for x86_64-apple-darwin (#1853)
Browse files Browse the repository at this point in the history
  • Loading branch information
jleibs authored Apr 14, 2023
1 parent 3cd534f commit 5dc9b61
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -245,9 +245,11 @@ jobs:

- id: set-matrix
shell: bash
# TODO(jleibs): figure out why tests are failing to complete on `x86_64-apple-darwin`
# See: https://github.com/rerun-io/rerun/pull/1853
run: |
matrix=()
matrix+=('{"platform": "macos", "target": "x86_64-apple-darwin", "run_tests": true, "runs_on": "macos-latest" },')
matrix+=('{"platform": "macos", "target": "x86_64-apple-darwin", "run_tests": false, "runs_on": "macos-latest" },')
matrix+=('{"platform": "macos", "target": "aarch64-apple-darwin", "run_tests": false, "runs_on": "macos-latest" },') # NOTE: we can't run tests on arm since our macos runner is x86_64
matrix+=('{"platform": "windows", "target": "x86_64-pc-windows-msvc", "run_tests": true, "runs_on": "windows-latest-8-cores"},')
Expand Down

0 comments on commit 5dc9b61

Please sign in to comment.