mirror of
https://github.com/microsoft/regorus.git
synced 2026-08-05 02:16:11 +00:00
- Expand dependabot coverage across Rust subcrates and other ecosystems. - Group updates per dependency and ignore vendored mimalloc crates. - Pin GitHub Actions to exact SHAs in existing workflows.
92 lines
2.9 KiB
YAML
92 lines
2.9 KiB
YAML
# Copyright (c) Microsoft Corporation. All rights reserved.
|
|
#
|
|
name: bindings/python
|
|
|
|
on:
|
|
push:
|
|
branches: [ "main" ]
|
|
pull_request:
|
|
branches: [ "main" ]
|
|
schedule:
|
|
# Run at 8:00 AM every day
|
|
- cron: "0 8 * * *"
|
|
|
|
jobs:
|
|
build:
|
|
strategy:
|
|
matrix:
|
|
host:
|
|
- name: ubuntu-22.04
|
|
target: x86_64-unknown-linux-gnu
|
|
- name: windows-latest
|
|
target: x86_64-pc-windows-msvc
|
|
runs-on: ${{ matrix.host.name }}
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
|
|
with:
|
|
fetch-depth: 0
|
|
- uses: ./.github/actions/toolchains/rust
|
|
with:
|
|
targets: ${{ matrix.host.target }}
|
|
- name: Cache cargo
|
|
uses: Swatinem/rust-cache@779680da715d629ac1d338a641029a2f4372abb5 # v2.8.2
|
|
with:
|
|
shared-key: ${{ runner.os }}-regorus
|
|
- name: Fetch dependencies
|
|
run: cargo fetch --locked
|
|
|
|
- name: Fetch Python crate dependencies
|
|
run: cargo fetch --locked --manifest-path bindings/python/Cargo.toml --target ${{ matrix.host.target }}
|
|
|
|
- uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
|
|
with:
|
|
python-version: "3.10"
|
|
architecture: x64
|
|
|
|
- name: Install maturin
|
|
run: python -m pip install maturin==1.5.1
|
|
|
|
- name: Build Python wheel via xtask
|
|
run: cargo xtask build-python --release --target ${{ matrix.host.target }} --target-dir bindings/python/dist --frozen
|
|
|
|
- name: Upload wheel artefacts
|
|
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
|
|
with:
|
|
name: regorus-wheel-${{ matrix.host.name }}
|
|
path: bindings/python/dist/regorus-*.whl
|
|
|
|
test:
|
|
needs: build
|
|
strategy:
|
|
matrix:
|
|
host: [ubuntu-24.04, ubuntu-22.04, windows-latest]
|
|
python-version: ["3.10", "3.11", "3.12", "3.13"]
|
|
runs-on: ${{ matrix.host }}
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
|
|
with:
|
|
fetch-depth: 0
|
|
- uses: ./.github/actions/toolchains/rust
|
|
- name: Cache cargo
|
|
uses: Swatinem/rust-cache@779680da715d629ac1d338a641029a2f4372abb5 # v2.8.2
|
|
with:
|
|
shared-key: ${{ runner.os }}-regorus
|
|
- name: Fetch dependencies
|
|
run: cargo fetch --locked
|
|
|
|
- name: Fetch Python crate dependencies
|
|
run: cargo fetch --locked --manifest-path bindings/python/Cargo.toml
|
|
|
|
- uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
|
|
with:
|
|
python-version: ${{ matrix.python-version }}
|
|
architecture: x64
|
|
|
|
- name: Install maturin
|
|
run: python -m pip install maturin==1.5.1
|
|
|
|
- name: Run Python smoke tests via xtask
|
|
run: cargo xtask test-python --release --python python
|