Skip to content

Commit

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

- id: set-matrix
shell: bash
# TODO(jleibs): figure out why tests are failing to complete on `x86_64-apple-darwin`
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 aee2f77

Please sign in to comment.