-
Notifications
You must be signed in to change notification settings - Fork 736
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #33 from NexaAI/ethan/cd
Ethan/cd
- Loading branch information
Showing
10 changed files
with
83 additions
and
61 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
name: Build Wheels (CPU) (MacOS) | ||
|
||
on: workflow_dispatch | ||
|
||
permissions: | ||
contents: write | ||
|
||
jobs: | ||
|
||
build_wheels_macos: | ||
name: Build wheels on macos-${{ matrix.os }} | ||
runs-on: macos-${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [12, 13, 14] | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
submodules: "recursive" | ||
|
||
# Used to host cibuildwheel | ||
- uses: actions/setup-python@v5 | ||
with: | ||
python-version: "3.8" | ||
cache: "pip" | ||
|
||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
# python -m pip install -e . | ||
python -m pip install build wheel | ||
- name: Build wheels | ||
uses: pypa/[email protected] | ||
env: | ||
# disable repair | ||
CIBW_REPAIR_WHEEL_COMMAND: "" | ||
CIBW_ENVIRONMENT: CMAKE_ARGS="-DCMAKE_OSX_ARCHITECTURES=arm64;x86_64 " | ||
CIBW_BUILD: "cp310-* cp311-* cp312-*" | ||
MACOSX_DEPLOYMENT_TARGET: ${{ matrix.os }} | ||
CMAKE_BUILD_PARALLEL_LEVEL: 4 | ||
with: | ||
package-dir: . | ||
output-dir: wheelhouse | ||
|
||
- uses: actions/upload-artifact@v4 | ||
with: | ||
name: wheels-macos-${{ matrix.os }} | ||
path: ./wheelhouse/*.whl | ||
|
||
release: | ||
name: Release | ||
needs: [build_wheels_macos] | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/download-artifact@v4 | ||
with: | ||
merge-multiple: true | ||
path: dist | ||
|
||
- uses: softprops/action-gh-release@v2 | ||
with: | ||
files: dist/* | ||
tag_name: ${{ github.ref_name }} | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -88,48 +88,6 @@ jobs: | |
name: wheels-${{ matrix.os }} | ||
path: ./wheelhouse/*.whl | ||
|
||
build_wheels_macos: | ||
name: Build wheels on macos-${{ matrix.os }} | ||
runs-on: macos-${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [12, 13, 14] | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
submodules: "recursive" | ||
|
||
# Used to host cibuildwheel | ||
- uses: actions/setup-python@v5 | ||
with: | ||
python-version: "3.8" | ||
cache: "pip" | ||
|
||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
# python -m pip install -e . | ||
python -m pip install build wheel | ||
- name: Build wheels | ||
uses: pypa/[email protected] | ||
env: | ||
# disable repair | ||
CIBW_REPAIR_WHEEL_COMMAND: "" | ||
CIBW_ENVIRONMENT: CMAKE_ARGS="-DCMAKE_OSX_ARCHITECTURES=arm64;x86_64 " | ||
CIBW_BUILD: "cp310-* cp311-* cp312-*" | ||
MACOSX_DEPLOYMENT_TARGET: ${{ matrix.os }} | ||
CMAKE_BUILD_PARALLEL_LEVEL: 4 | ||
with: | ||
package-dir: . | ||
output-dir: wheelhouse | ||
|
||
- uses: actions/upload-artifact@v4 | ||
with: | ||
name: wheels-macos-${{ matrix.os }} | ||
path: ./wheelhouse/*.whl | ||
|
||
build_wheels_arm64: | ||
name: Build arm64 wheels | ||
runs-on: ubuntu-20.04 | ||
|
@@ -185,7 +143,7 @@ jobs: | |
|
||
release: | ||
name: Release | ||
needs: [build_wheels, build_wheels_macos, build_wheels_arm64, build_sdist] | ||
needs: [build_wheels_linux, build_wheels_win, build_wheels_arm64, build_sdist] | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,17 +30,14 @@ jobs: | |
# python -m pip install -e . | ||
python -m pip install build wheel | ||
- name: Copy pyproject.toml | ||
run: | | ||
cp tomls/pyproject_metal.toml pyproject.toml | ||
- name: Build wheels | ||
uses: pypa/[email protected] | ||
env: | ||
# disable repair | ||
CIBW_REPAIR_WHEEL_COMMAND: "" | ||
CIBW_ARCHS: "arm64" | ||
CIBW_BUILD: "cp310-* cp311-* cp312-*" | ||
CIBW_ENVIRONMENT: CMAKE_ARGS="-DCMAKE_OSX_ARCHITECTURES=arm64 -DCMAKE_APPLE_SILICON_PROCESSOR=arm64 -DGGML_METAL=ON -DSD_METAL=ON" | ||
MACOSX_DEPLOYMENT_TARGET: ${{ matrix.os }} | ||
CMAKE_BUILD_PARALLEL_LEVEL: 4 | ||
with: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters