Skip to content
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

CI Github macos ARM #2144

Closed
johnnynunez opened this issue Feb 14, 2024 · 2 comments
Closed

CI Github macos ARM #2144

johnnynunez opened this issue Feb 14, 2024 · 2 comments
Labels
feature request Functionality does not currently exist, would need to be created as a new feature (type)

Comments

@johnnynunez
Copy link

johnnynunez commented Feb 14, 2024

https://github.blog/changelog/2024-01-30-github-actions-macos-14-sonoma-is-now-available/

name: CoreML Tools CI

on:
  push:
    branches: [ main ]
  pull_request:
    branches: [ main ]

jobs:
   build-linux: 
     # ... (Existing Linux configuration)
     
   build-macos:
      # ... (Existing macOS configuration)

   build-macos-sonoma: 
      runs-on: macos-14  # Uses macOS 14 Sonoma
      steps:
        - uses: actions/checkout@v4
        - uses: actions/setup-python@v4
          with:
             python-version: <desired Python version> # e.g., '3.10'
        - name: Install dependencies
          run: pip install -r requirements.txt
        - name: Run unit tests
          run: pytest 
        - name: Additional Sonoma-specific tests  # If any arise
          run:  ...  
@johnnynunez johnnynunez added the feature request Functionality does not currently exist, would need to be created as a new feature (type) label Feb 14, 2024
@TobyRoseman
Copy link
Collaborator

@johnnynunez - what feature are you requesting here?

@johnnynunez
Copy link
Author

@johnnynunez - what feature are you requesting here?

CI for tests. build whl and more. Now it's possible to run with native mac.
I don't see tets for my PR #2143

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
feature request Functionality does not currently exist, would need to be created as a new feature (type)
Projects
None yet
Development

No branches or pull requests

2 participants