Skip to content
This repository was archived by the owner on Jan 1, 2026. It is now read-only.
Open
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
6 changes: 2 additions & 4 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ jobs:
- runner: ubuntu-22.04
target: ppc64le
steps:
- run: sudo apt install libasound2-dev
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
Expand All @@ -49,6 +48,7 @@ jobs:
args: --release --out dist --find-interpreter
sccache: ${{ !startsWith(github.ref, 'refs/tags/') }}
manylinux: auto
before-script-linux: sudo apt install libasound2-dev
- name: Upload wheels
uses: actions/upload-artifact@v4
with:
Expand All @@ -69,7 +69,6 @@ jobs:
- runner: ubuntu-22.04
target: armv7
steps:
- run: sudo apt install libasound2-dev
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
Expand All @@ -81,6 +80,7 @@ jobs:
args: --release --out dist --find-interpreter
sccache: ${{ !startsWith(github.ref, 'refs/tags/') }}
manylinux: musllinux_1_2
before-script-linux: dnf install alsa-lib-devel
- name: Upload wheels
uses: actions/upload-artifact@v4
with:
Expand All @@ -97,7 +97,6 @@ jobs:
- runner: windows-latest
target: x86
steps:
- run: sudo apt install libasound2-dev
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
Expand Down Expand Up @@ -125,7 +124,6 @@ jobs:
- runner: macos-14
target: aarch64
steps:
- run: sudo apt install libasound2-dev
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
Expand Down
22 changes: 22 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Rust

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

env:
CARGO_TERM_COLOR: always

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
Loading