Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/rust-core-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Rust Core CI

on:
push:
branches: [rust-core]
branches: [rust-core, main]
pull_request:
branches: [rust-core, main]

Expand Down
26 changes: 13 additions & 13 deletions .github/workflows/rust-core-wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,19 +14,19 @@ jobs:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: Swatinem/rust-cache@v2
with:
workspaces: ". -> target"
cache-on-failure: true
- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
with:
python-version: '3.11'
- uses: PyO3/maturin-action@v1
with:
args: --profile dist --out dist --interpreter python3.11
manylinux: auto
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
with:
name: wheels-${{ matrix.os }}
path: dist/*.whl
Expand All @@ -36,20 +36,20 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: Swatinem/rust-cache@v2
with:
workspaces: ". -> target"
cache-on-failure: true
- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
with:
python-version: '3.11'
- uses: PyO3/maturin-action@v1
with:
target: aarch64-unknown-linux-gnu
args: --profile dist --out dist --interpreter python3.11
manylinux: auto
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
with:
name: wheels-linux-aarch64
path: dist/*.whl
Expand All @@ -59,19 +59,19 @@ jobs:
runs-on: macos-latest
timeout-minutes: 60
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: Swatinem/rust-cache@v2
with:
workspaces: ". -> target"
cache-on-failure: true
- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
with:
python-version: '3.11'
- uses: PyO3/maturin-action@v1
with:
target: x86_64-apple-darwin
args: --profile dist --out dist
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
with:
name: wheels-macos-x86_64
path: dist/*.whl
Expand All @@ -81,19 +81,19 @@ jobs:
runs-on: windows-latest
timeout-minutes: 60
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: Swatinem/rust-cache@v2
with:
workspaces: ". -> target"
cache-on-failure: true
- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
with:
python-version: '3.11'
- uses: PyO3/maturin-action@v1
with:
target: aarch64-pc-windows-msvc
args: --profile dist --out dist
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
with:
name: wheels-windows-arm64
path: dist/*.whl
Expand All @@ -107,7 +107,7 @@ jobs:
permissions:
id-token: write
steps:
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v8
with:
pattern: 'wheels-*'
merge-multiple: true
Expand Down
Loading