Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

WIP Pillow util module#365

WIP Pillow util module

WIP Pillow util module #365

Workflow file for this run

name:Build
on:[push, pull_request]
jobs:
build_wheels:
name:Build wheels on ${{ matrix.os }}
runs-on:${{ matrix.os }}
strategy:
matrix:
os:
[ubuntu-latest, ubuntu-24.04-arm, windows-latest, macos-13, macos-14]
steps:
-uses:actions/checkout@v4
with:
submodules:true
-name:Build sdist
run:|
pipx run build --sdist
python3 -c "import pathlib,glob;pathlib.Path('GITHUB_ENV').write_text('SDIST_PATH' + glob.glob('dist/*.tar.gz')[0])"
-name:Build wheels
uses:pypa/cibuildwheel@v3.1.4
env:
CIBW_BUILD:"cp39-* cp310-* cp311-* cp312-* cp313-* pp310-* pp311-*"
with:
package-dir:"$SDIST_PATH"
-name:Upload wheel artifacts
uses:actions/upload-artifact@v4
if:${{ github.ref == 'refs/heads/master'}}
with:
name:cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }}
path:./wheelhouse/*.whl
retention-days:7
-name:Upload sdist artifact
uses:actions/upload-artifact@v4
if:
${{ github.ref == 'refs/heads/master' && matrix.os ==
'windows-latest'}}
with:
name:sdist-${{ matrix.os }}-${{ strategy.job-index }}
path:./dist/*.tar.gz
retention-days:7
build_wasm:
name:Build wheels for wasm / emscripten
runs-on:ubuntu-22.04
steps:
-uses:actions/checkout@v4
with:
submodules:true
-uses:pypa/cibuildwheel@v3.1.4
env:
CIBW_PLATFORM:pyodide
-uses:actions/upload-artifact@v4
if:${{ github.ref == 'refs/heads/master' }}
with:
name:cibw-wheels-pyodide-${{ matrix.os }}-${{ strategy.job-index }}
path:./wheelhouse/*.whl
retention-days:7
build_ios:
name:Build wheels for iOS
runs-on:macos-latest
steps:
-name:Checkout
uses:actions/checkout@v4
with:
submodules:true
-run:brew upgrade cmake --formula
-uses:pypa/cibuildwheel@v3.1.4
env:
CIBW_PLATFORM:ios
-uses:actions/upload-artifact@v4
if:${{ github.ref == 'refs/heads/master' }}
with:
name:cibw-wheels-ios-${{ matrix.os }}-${{ strategy.job-index }}
path:./wheelhouse/*.whl
retention-days:7

[8]ページ先頭

©2009-2025 Movatter.jp