Files
kmeans_rs/.github/workflows/CI.yml
T
w.pomp 07159bfd97
CI / linux (map[runner:ubuntu-latest target:x86_64-unknown-linux-gnu]) (push) Failing after 10m3s
CI / sdist (push) Failing after 12s
CI / Release (push) Has been skipped
CI workflow
2026-04-16 18:02:50 +02:00

128 lines
3.7 KiB
YAML

# This file is autogenerated by maturin v1.8.4
# To update, run
#
# maturin generate-ci github
#
name: CI
on:
push:
branches:
- main
- master
tags:
- '*'
pull_request:
workflow_dispatch:
permissions:
contents: read
jobs:
linux:
runs-on: ${{ matrix.platform.runner }}
strategy:
matrix:
platform:
- runner: ubuntu-latest
target: x86_64-unknown-linux-gnu
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.x
- name: Cache Rust and sccache
uses: actions/cache@v4
with:
path: |
${{ runner.temp }}/cargo
${{ runner.temp }}/rustup
~/.cache/pip
~/.cache/pip-wheel
~/.cache/sccache
key: rust-cache-${{ matrix.platform.target }}-${{ hashFiles('**/Cargo.lock') }}-${{ runner.os }}-${{ github.ref }}
restore-keys: |
rust-cache-${{ matrix.platform.target }}-${{ runner.os }}-
rust-cache-${{ runner.os }}-
- name: Install Rust (rustup) if needed
run: |
set -e
export RUSTUP_HOME="${{ runner.temp }}/rustup"
export CARGO_HOME="${{ runner.temp }}/cargo"
export PATH="$CARGO_HOME/bin:$PATH"
if ! command -v rustc >/dev/null 2>&1; then
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
source "$CARGO_HOME/env" 2>/dev/null || true
rustup default nightly
rustup target add x86_64-unknown-linux-gnu
fi
rustup target add "${{ matrix.platform.target }}" || true
shell: bash
- name: Install sccache and maturin
run: |
export RUSTUP_HOME="${{ runner.temp }}/rustup"
export CARGO_HOME="${{ runner.temp }}/cargo"
export PATH="$CARGO_HOME/bin:$PATH"
python -m pip install --upgrade pip
pip install maturin
if ! command -v sccache >/dev/null 2>&1; then
cargo install sccache || pip install sccache
fi
shell: bash
- name: Build wheels
run: |
source $HOME/.cargo/env
python -m pip install maturin
maturin build --release --out dist --find-interpreter --target ${{ matrix.platform.target }}
- name: Upload wheels
uses: actions/upload-artifact@v3.2.2
with:
name: wheels-linux-${{ matrix.platform.target }}
path: dist
sdist:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build sdist
uses: PyO3/maturin-action@v1
with:
command: sdist
args: --out dist
- name: Upload sdist
uses: actions/upload-artifact@v4
with:
name: wheels-sdist
path: dist
release:
name: Release
runs-on: ubuntu-latest
if: ${{ startsWith(github.ref, 'refs/tags/') || github.event_name == 'workflow_dispatch' }}
needs: [linux, sdist]
permissions:
# Use to sign the release artifacts
id-token: write
# Used to upload release artifacts
contents: write
# Used to generate artifact attestation
attestations: write
steps:
- uses: actions/download-artifact@v4
- name: Generate artifact attestation
uses: actions/attest-build-provenance@v2
with:
subject-path: 'wheels-*/*'
- name: Publish to PyPI
if: ${{ startsWith(github.ref, 'refs/tags/') }}
uses: PyO3/maturin-action@v1
env:
MATURIN_PYPI_TOKEN: ${{ secrets.PYPI_API_TOKEN }}
with:
command: upload
args: --non-interactive --skip-existing wheels-*/*