Skip to content

diff/patch: refactor #45

diff/patch: refactor

diff/patch: refactor #45

Workflow file for this run

# This file is autogenerated by maturin v1.7.4
# To update, run
#
# maturin generate-ci github
#
name: CI
on:
push:
branches:
- main
- master
pull_request:
workflow_dispatch:
release:
types: [published]
permissions:
contents: read
jobs:
rust:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.x
- uses: dtolnay/rust-toolchain@stable
with:
components: clippy, rustfmt
- uses: Swatinem/rust-cache@v2
- name: Format (check)
run: cargo fmt --all -- --check
- name: Lint (clippy)
run: |
# Exclude the autogenerated linkml_meta crate from clippy by linting
# only the relevant packages explicitly. Also avoid linting deps.
cargo clippy \
-p schemaview \
-p linkml_runtime \
-p linkml_tools \
-p linkml_runtime_python \
-p linkml_wasm \
--all-targets --all-features -- \
-D warnings --no-deps
- name: Build
run: cargo build --workspace
- name: Test
run: cargo test --workspace
linux:
runs-on: ${{ matrix.platform.runner }}
strategy:
matrix:
platform:
- runner: ubuntu-latest
target: x86_64
- runner: ubuntu-latest
target: x86
- runner: ubuntu-latest
target: aarch64
- runner: ubuntu-latest
target: armv7
- runner: ubuntu-latest
target: s390x
- runner: ubuntu-latest
target: ppc64le
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.x
- name: Set python crate version from tag
if: startsWith(github.ref, 'refs/tags/')
shell: bash
run: |
VER="${GITHUB_REF#refs/tags/}"
VER="${VER#v}"
echo "Setting src/python/Cargo.toml version to ${VER}"
sed -i -E "s/^version = \".*\"/version = \"${VER}\"/" src/python/Cargo.toml
- name: Build wheels
uses: PyO3/maturin-action@v1
with:
working-directory: src/python
target: ${{ matrix.platform.target }}
args: --release --out dist --find-interpreter
sccache: 'true'
manylinux: ${{ matrix.target == 'aarch64' && 'manylinux_2_28' || 'auto' }}
- name: Upload wheels
uses: actions/upload-artifact@v4
with:
name: wheels-linux-${{ matrix.platform.target }}
path: src/python/dist
musllinux:
runs-on: ${{ matrix.platform.runner }}
strategy:
matrix:
platform:
- runner: ubuntu-latest
target: x86_64
- runner: ubuntu-latest
target: x86
- runner: ubuntu-latest
target: aarch64
- runner: ubuntu-latest
target: armv7
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.x
- name: Set python crate version from tag
if: startsWith(github.ref, 'refs/tags/')
shell: bash
run: |
VER="${GITHUB_REF#refs/tags/}"
VER="${VER#v}"
echo "Setting src/python/Cargo.toml version to ${VER}"
sed -i -E "s/^version = \".*\"/version = \"${VER}\"/" src/python/Cargo.toml
- name: Build wheels
uses: PyO3/maturin-action@v1
with:
working-directory: src/python
target: ${{ matrix.platform.target }}
args: --release --out dist --find-interpreter
sccache: 'true'
manylinux: musllinux_1_2
- name: Upload wheels
uses: actions/upload-artifact@v4
with:
name: wheels-musllinux-${{ matrix.platform.target }}
path: src/python/dist
windows:
runs-on: ${{ matrix.platform.runner }}
strategy:
matrix:
platform:
- runner: windows-latest
target: x64
- runner: windows-latest
target: x86
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.x
architecture: ${{ matrix.platform.target }}
- name: Set python crate version from tag
if: startsWith(github.ref, 'refs/tags/')
shell: pwsh
run: |
$ver = $env:GITHUB_REF -replace '^refs/tags/', '' -replace '^v',''
Write-Host "Setting src/python/Cargo.toml version to $ver"
$path = "src/python/Cargo.toml"
$content = Get-Content -Raw $path
$pattern = '^version\s*=\s*".*"$'
$replacement = "version = `"$ver`""
$new = [regex]::Replace($content, $pattern, $replacement, 'Multiline')
Set-Content -NoNewline -Path $path -Value $new
- name: Build wheels
uses: PyO3/maturin-action@v1
with:
working-directory: src/python
target: ${{ matrix.platform.target }}
args: --release --out dist --find-interpreter
sccache: 'true'
- name: Upload wheels
uses: actions/upload-artifact@v4
with:
name: wheels-windows-${{ matrix.platform.target }}
path: src/python/dist
macos:
runs-on: ${{ matrix.platform.runner }}
strategy:
matrix:
platform:
- runner: macos-14
target: aarch64
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.x
- name: Set python crate version from tag
if: startsWith(github.ref, 'refs/tags/')
shell: bash
run: |
VER="${GITHUB_REF#refs/tags/}"
VER="${VER#v}"
echo "Setting src/python/Cargo.toml version to ${VER}"
sed -i '' -E "s/^version = \".*\"/version = \"${VER}\"/" src/python/Cargo.toml
- name: Build wheels
uses: PyO3/maturin-action@v1
with:
working-directory: src/python
target: ${{ matrix.platform.target }}
args: --release --out dist --find-interpreter
sccache: 'true'
- name: Upload wheels
uses: actions/upload-artifact@v4
with:
name: wheels-macos-${{ matrix.platform.target }}
path: src/python/dist
sdist:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set python crate version from tag
if: startsWith(github.ref, 'refs/tags/')
shell: bash
run: |
VER="${GITHUB_REF#refs/tags/}"
VER="${VER#v}"
echo "Setting src/python/Cargo.toml version to ${VER}"
sed -i -E "s/^version = \".*\"/version = \"${VER}\"/" src/python/Cargo.toml
- name: Build sdist
uses: PyO3/maturin-action@v1
with:
working-directory: src/python
command: sdist
args: --out dist
- name: Upload sdist
uses: actions/upload-artifact@v4
with:
name: wheels-sdist
path: src/python/dist
release:
name: Release
runs-on: ubuntu-latest
if: ${{ github.event_name == 'release' || startsWith(github.ref, 'refs/tags/') || github.event_name == 'workflow_dispatch' }}
needs: [linux, musllinux, windows, macos, 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@v1
with:
subject-path: 'wheels-*/*'
- name: Publish to PyPI
if: false
uses: PyO3/maturin-action@v1
env:
MATURIN_PYPI_TOKEN: ${{ secrets.PYPI_API_TOKEN }}
with:
working-directory: src/python
command: upload
args: --non-interactive --skip-existing wheels-*/*
- name: Upload release assets
uses: softprops/action-gh-release@v1
if: ${{ github.event_name == 'release' || startsWith(github.ref, 'refs/tags/') }}
with:
files: wheels-*/*