-
Notifications
You must be signed in to change notification settings - Fork 863
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
M1 conda binaries build support #3013
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Needs an addition in this line to also run on arm64 mac https://github.com/pytorch/serve/blob/master/.github/workflows/regression_tests_cpu_binaries.yml#L19
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You just need to add macos-14
in os: [ubuntu-20.04, macOS-latest]
python-version: ["3.8", "3.9", "3.10"] | ||
binaries: ["pypi", "conda"] | ||
exclude: | ||
- os: macos-latest | ||
python-version: 3.8 | ||
- os: macos-14 | ||
python-version: 3.8, 3.9 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please split these..Doesn't seem like this works
@@ -26,7 +26,15 @@ jobs: | |||
- uses: actions/checkout@v3 | |||
with: | |||
submodules: recursive | |||
- name: Setup conda with Python ${{ matrix.python-version }} | |||
- name: Setup Conda for M1 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Will result in duplicate jobs
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM. Will verify based on tonight's nightly
adding M1 support in the conda build binaries script
Issue #2555