-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[CI:Feature] Add internal pymm release script.
- Loading branch information
1 parent
f0454f6
commit f4258f1
Showing
1 changed file
with
88 additions
and
0 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,88 @@ | ||
name: internal_pymnn_release | ||
on: | ||
push: | ||
paths: | ||
- '.github/workflows/internal_pymnn_release.yml' | ||
tags: | ||
- '*' | ||
pull_request: | ||
branches: | ||
- 'master' | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build_wheels: | ||
name: ${{ matrix.arch }} ${{ matrix.build }} on ${{ matrix.os }} | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
include: | ||
- { os: ubuntu-latest, arch: x86_64, build: 'cp*-manylinux*' } | ||
- { os: ubuntu-latest, arch: aarch64, build: 'cp*-manylinux*' } | ||
- { os: windows-latest, arch: AMD64, build: 'cp*' } | ||
- { os: macos-13, arch: x86_64, build: 'cp*' } | ||
- { os: macos-14, arch: arm64, build: 'cp*' } | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
submodules: true | ||
|
||
- name: using msvc | ||
if: matrix.os == 'windows-latest' | ||
uses: ilammy/msvc-dev-cmd@v1 | ||
|
||
- name: using private schema patch | ||
env: | ||
PATCH_CONTENT: ${{ secrets.PRIVATE_SCHEMA_PATCH }} | ||
run: | | ||
patch_file=$(mktemp schema_patch.diff) | ||
echo "$PATCH_CONTENT" > $patch_file | ||
git apply $patch_file | ||
git status | ||
rm $patch_file | ||
cd schema | ||
ls -lh | ||
- uses: actions/setup-python@v4 | ||
with: | ||
python-version: '3.12' | ||
|
||
- name: set up qemu | ||
if: matrix.os == 'ubuntu-latest' && matrix.arch == 'aarch64' | ||
uses: docker/setup-qemu-action@v3 | ||
with: | ||
platforms: all | ||
|
||
- name: install pipx | ||
if: matrix.os == 'macos-14' | ||
run: python -m pip install pipx | ||
|
||
- name: Build wheels | ||
uses: pypa/[email protected] | ||
env: | ||
CIBW_ARCHS_MACOS: ${{ matrix.arch }} | ||
CIBW_ARCHS_LINUX: ${{ matrix.arch }} | ||
CIBW_ARCHS_WINDOWS: ${{ matrix.arch }} | ||
CIBW_BUILD: ${{ matrix.build }} | ||
CIBW_BUILD_VERBOSITY: 1 | ||
CIBW_ENVIRONMENT: CMAKE_BUILD_PARALLEL_LEVEL=2 | ||
with: | ||
package-dir: pymnn/pip_package | ||
output-dir: wheelhouse | ||
config-file: "{package}/pyproject.toml" | ||
|
||
- name: Show files | ||
run: ls -lh wheelhouse | ||
shell: bash | ||
|
||
- name: Verify clean directory | ||
run: git diff --exit-code | ||
shell: bash | ||
|
||
- name: Upload wheels | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: artifact-${{ matrix.os }}-${{ matrix.arch }} | ||
path: wheelhouse/*.whl |