CI #250
Workflow file for this run
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
name: CI | |
on: | |
pull_request: | |
push: | |
branches: [main] | |
tags: ['v*'] | |
workflow_dispatch: | |
env: | |
MATURIN_VERSION: 1.4.0 | |
jobs: | |
test: | |
runs-on: "ubuntu-latest" | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dev-requirements | |
run: pip install -r dev-requirements.txt | |
- uses: actions/cache@v4 | |
with: | |
path: | | |
~/.cargo/registry | |
~/.cargo/git | |
target | |
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} | |
- name: Test | |
run: cargo test --release | |
- name: Test no numpy installed works | |
run: | | |
pip uninstall numpy -y | |
cargo test --release --features nonumpy | |
build: | |
if: ${{ startsWith(github.ref, 'refs/tags/') || github.event_name == 'workflow_dispatch' }} | |
needs: test | |
strategy: | |
matrix: | |
python: | |
- version: '3.7' | |
- version: '3.8' | |
- version: '3.9' | |
- version: '3.10' | |
- version: '3.11' | |
- version: '3.12' | |
platform: | |
- os: ubuntu-latest | |
- os: macos-latest | |
- os: macos-latest | |
arch: aarch64 | |
- os: windows-latest | |
runs-on: ${{ matrix.platform.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python.constraints || matrix.python.version }} | |
# allow-prereleases: ${{ matrix.python.version == "3.12" }} | |
- uses: actions/cache@v4 | |
with: | |
path: | | |
~/.cargo/registry | |
~/.cargo/git | |
target | |
key: ${{ runner.platform.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} | |
- name: Build Wheels - Linux | |
if: matrix.platform.os == 'ubuntu-latest' | |
uses: PyO3/maturin-action@v1 | |
with: | |
maturin-version: ${{ env.MATURIN_VERSION }} | |
manylinux: auto | |
args: -i python${{ matrix.python.version }} --release --strip --sdist | |
- name: Build Wheels - MacOS [aarch64] | |
if: ${{ matrix.platform.os == 'macos-latest' && matrix.platform.arch == 'aarch64' }} | |
uses: PyO3/maturin-action@v1 | |
with: | |
maturin-version: ${{ env.MATURIN_VERSION }} | |
args: -i python --release --target aarch64-apple-darwin --strip | |
- name: Build Wheels - MacOS [x86_64] | |
if: ${{ matrix.platform.os == 'macos-latest' && matrix.platform.arch != 'aarch64' }} | |
uses: PyO3/maturin-action@v1 | |
with: | |
maturin-version: ${{ env.MATURIN_VERSION }} | |
args: -i python --release --target universal2-apple-darwin --strip | |
- name: Build Wheels - Windows | |
if: matrix.platform.os == 'windows-latest' | |
uses: PyO3/maturin-action@v1 | |
with: | |
maturin-version: ${{ env.MATURIN_VERSION }} | |
args: -i python --release --strip | |
- name: Try to install source distribution | |
run: pip install target/wheels/pyxirr-*.tar.gz | |
- name: Upload wheels | |
uses: actions/upload-artifact@v4 | |
with: | |
name: wheels-${{ matrix.platform.os }}-${{ matrix.platform.arch || 'x86_64' }}-${{ matrix.python.version }} | |
path: target/wheels | |
linux-cross: | |
if: ${{ startsWith(github.ref, 'refs/tags/') || github.event_name == 'workflow_dispatch' }} | |
needs: test | |
strategy: | |
matrix: | |
python: | |
- version: '3.7' | |
abi: 'cp37-cp37m' | |
- version: '3.8' | |
abi: 'cp38-cp38' | |
- version: '3.9' | |
abi: 'cp39-cp39' | |
- version: '3.10' | |
abi: 'cp310-cp310' | |
- version: '3.11' | |
abi: 'cp311-cp311' | |
- version: '3.12' | |
abi: 'cp312-cp312' | |
target: [aarch64, armv7, s390x, ppc64le, ppc64] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build Wheels | |
uses: PyO3/maturin-action@v1 | |
env: | |
PYO3_CROSS_LIB_DIR: /opt/python/${{ matrix.python.abi }}/lib | |
with: | |
maturin-version: ${{ env.MATURIN_VERSION }} | |
target: ${{ matrix.target }} | |
manylinux: auto | |
args: --release --strip -i python${{ matrix.python.version }} | |
- name: Upload wheels | |
uses: actions/upload-artifact@v4 | |
with: | |
name: wheels-${{ matrix.target }}-${{ matrix.python.version }} | |
path: target/wheels | |
wasm-emscripten: | |
if: ${{ startsWith(github.ref, 'refs/tags/') || github.event_name == 'workflow_dispatch' }} | |
needs: test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: mymindstorm/setup-emsdk@v14 | |
with: | |
# pip install pyodide-build | |
# pyodide config get emscripten_version | |
version: 3.1.45 | |
- uses: PyO3/maturin-action@v1 | |
with: | |
maturin-version: ${{ env.MATURIN_VERSION }} | |
target: wasm32-unknown-emscripten | |
rust-toolchain: nightly | |
args: --release --strip -i python3.11 | |
- name: Upload wheels | |
uses: actions/upload-artifact@v4 | |
with: | |
name: wheels-wasm-emscripten | |
path: target/wheels | |
linux-musl: | |
if: ${{ startsWith(github.ref, 'refs/tags/') || github.event_name == 'workflow_dispatch' }} | |
needs: test | |
strategy: | |
matrix: | |
target: | |
- x86_64-unknown-linux-musl | |
- i686-unknown-linux-musl | |
- aarch64-unknown-linux-musl | |
- armv7-unknown-linux-musleabihf | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build Wheels - musl | |
uses: PyO3/maturin-action@v1 | |
with: | |
maturin-version: ${{ env.MATURIN_VERSION }} | |
target: ${{ matrix.target }} | |
manylinux: musllinux_1_2 | |
args: --release --strip -i 3.7 3.8 3.9 3.10 3.11 3.12 | |
- name: Upload wheels | |
uses: actions/upload-artifact@v4 | |
with: | |
name: wheels-musl-${{ matrix.target }} | |
path: target/wheels | |
publish: | |
if: startsWith(github.ref, 'refs/tags/') | |
needs: | |
- build | |
- linux-cross | |
- linux-musl | |
- wasm-emscripten | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/download-artifact@v4 | |
with: | |
name: wheels-* | |
merge-multiple: true | |
- run: pip install maturin | |
- name: Release | |
uses: softprops/action-gh-release@v1 | |
with: | |
files: pyxirr*.whl | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: PyPI publish | |
env: | |
MATURIN_PASSWORD: ${{ secrets.PYPI_PASSWORD }} | |
run: find . -name 'pyxirr*' | xargs -l maturin upload --skip-existing --username __token__ |