-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
cc6ff75
commit 0aa796d
Showing
11 changed files
with
173 additions
and
130 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
name: CI | ||
|
||
on: | ||
push: | ||
branches: [ main ] | ||
pull_request: | ||
branches: [ main ] | ||
workflow_dispatch: | ||
|
||
env: | ||
CARGO_TERM_COLOR: always | ||
|
||
jobs: | ||
nix_test: | ||
name: nix_test | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Nix dependencies | ||
run: sudo apt-get update; sudo apt-get -y install libasound2-dev libudev-dev lld | ||
- uses: actions/checkout@v3 | ||
- uses: dtolnay/rust-toolchain@stable | ||
- run: cargo test --release --workspace --all-features | ||
nix_build: | ||
name: nix_build | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Nix dependencies | ||
run: sudo apt-get update; sudo apt-get -y install libasound2-dev libudev-dev lld | ||
- uses: actions/checkout@v3 | ||
- uses: dtolnay/rust-toolchain@stable | ||
- run: cargo build --release --workspace | ||
win_test: | ||
name: win_test | ||
runs-on: windows-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: dtolnay/rust-toolchain@stable | ||
- run: cargo test --release --workspace --all-features | ||
win_build: | ||
name: win_build | ||
runs-on: windows-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: dtolnay/rust-toolchain@stable | ||
- run: cargo build --release --workspace | ||
# uses so many build action minutes :( | ||
# macos_test: | ||
# name: macos_test | ||
# runs-on: macos-latest | ||
# steps: | ||
# - name: deps | ||
# run: brew install michaeleisel/zld/zld | ||
# - uses: actions/checkout@v3 | ||
# - uses: dtolnay/rust-toolchain@stable | ||
# - run: cargo build --release --workspace --all-features | ||
# macos_build: | ||
# name: macos_build | ||
# runs-on: macos-latest | ||
# steps: | ||
# - name: deps | ||
# run: brew install michaeleisel/zld/zld | ||
# - uses: actions/checkout@v3 | ||
# - uses: dtolnay/rust-toolchain@stable | ||
# - run: cargo build --release --workspace |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
name: Code-cov | ||
|
||
on: | ||
push: | ||
branches: [ main ] | ||
pull_request: | ||
branches: [ main ] | ||
workflow_dispatch: | ||
|
||
env: | ||
CARGO_TERM_COLOR: always | ||
|
||
jobs: | ||
code_cov: | ||
name: code_cov | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Nix dependencies | ||
run: sudo apt-get update; sudo apt-get -y install libasound2-dev libudev-dev lld | ||
- uses: actions/checkout@v3 | ||
- uses: dtolnay/rust-toolchain@nightly | ||
- run: | | ||
cargo install cargo-tarpaulin | ||
cargo tarpaulin --release --workspace --all-features --include-tests --engine=llvm --fail-under 85 --ignore-panics |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
name: Doc-cov | ||
|
||
on: | ||
push: | ||
branches: [ main ] | ||
pull_request: | ||
branches: [ main ] | ||
workflow_dispatch: | ||
|
||
env: | ||
CARGO_TERM_COLOR: always | ||
|
||
jobs: | ||
doc_cov: | ||
name: doc_cov | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Nix dependencies | ||
run: sudo apt-get update; sudo apt-get -y install libasound2-dev libudev-dev lld | ||
- uses: actions/checkout@v3 | ||
- uses: dtolnay/rust-toolchain@nightly | ||
- run: | | ||
export RUSTDOCFLAGS="-Z unstable-options --show-coverage" | ||
cargo +nightly doc --workspace --all-features --no-deps --release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,3 +13,6 @@ publish = false | |
|
||
[dependencies] | ||
# clap = { workspace = true } | ||
|
||
[lints] | ||
workspace = true |
Oops, something went wrong.