Skip to content

Commit

Permalink
Disable Python CI/release on MacOS pending SWE-538.
Browse files Browse the repository at this point in the history
  • Loading branch information
Patrick Mihelich committed Dec 18, 2024
1 parent 51bf2a5 commit 7efcd0a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/ci_python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@ jobs:
# We use ubuntu-22.04 and macos-13 because they are the final Github runner images
# with Python 3.8 pre-installed. Brain OS images based on Jetpack 5 use 3.8 as the
# system Python, so we want to test 3.8 even though it is EOL.
os: [ubuntu-22.04, macos-13]
# os: [ubuntu-22.04, macos-13]
# TODO(SWE-538): Fix MacOS CI and release actions on macos-13.
os: [ubuntu-22.04]
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
steps:
- uses: actions/checkout@v4
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/pypi-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-22.04, macos-13]
# TODO(SWE-538): Fix MacOS CI and release actions on macos-13.
# os: [ubuntu-22.04, macos-13]
os: [ubuntu-22.04]
steps:
- uses: actions/checkout@v4
with:
Expand Down

0 comments on commit 7efcd0a

Please sign in to comment.