-
Notifications
You must be signed in to change notification settings - Fork 26
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
Showing
7 changed files
with
138 additions
and
176 deletions.
There are no files selected for viewing
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
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
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,135 @@ | ||
name: Rust | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
tags: | ||
- "**" | ||
pull_request: | ||
branches: | ||
- "**" | ||
|
||
jobs: | ||
build_crate: | ||
name: Tests | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Set up Rust | ||
uses: dtolnay/rust-toolchain@stable | ||
with: | ||
components: rustfmt, clippy | ||
|
||
- name: Run sccache-cache | ||
uses: mozilla-actions/sccache-action@v0.0.5 | ||
|
||
- name: Rustfmt | ||
run: cargo fmt --all -- --files-with-diff --check | ||
|
||
- name: Clippy | ||
run: cargo clippy --workspace --all-targets --all-features | ||
|
||
- name: Audit | ||
run: cargo audit --ignore RUSTSEC-2023-0071 | ||
|
||
- name: Tests | ||
run: cargo test --workspace --all-features --release | ||
|
||
- name: Build | ||
run: cargo build --release | ||
|
||
- name: Upload crate artifacts | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: crate | ||
path: ./target/package/*-*.crate | ||
|
||
- name: Install wasm-pack | ||
run: cargo install wasm-pack --locked | ||
|
||
- name: Build and pack wasm | ||
run: | | ||
cd wasm | ||
wasm-pack build | ||
wasm-pack pack | ||
- name: Upload NPM artifacts | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: npm-pkg | ||
path: ./wasm/pkg/*-*.tgz | ||
|
||
- name: Install cargo-workspaces | ||
run: cargo install cargo-workspaces --locked | ||
|
||
- name: Publish to crates.io if tagged | ||
if: startsWith(github.event.ref, 'refs/tags') | ||
env: | ||
CARGO_REGISTRY_TOKEN: ${{ secrets.cargo_registry_token }} | ||
run: cargo ws publish --publish-as-is | ||
|
||
- name: Publish to npmjs.com if tagged | ||
if: startsWith(github.event.ref, 'refs/tags') | ||
uses: JS-DevTools/npm-publish@v3 | ||
with: | ||
token: ${{ secrets.node_auth_token }} | ||
package: wasm/pkg/package.json | ||
|
||
benchmarks: | ||
name: Benchmarks | ||
runs-on: benchmark | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Set up Rust | ||
uses: dtolnay/rust-toolchain@stable | ||
|
||
- name: Run benchmarks | ||
run: cargo bench --workspace | ||
|
||
fuzz_targets: | ||
runs-on: ubuntu-latest | ||
env: | ||
CARGO_PROFILE_RELEASE_LTO: false | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- uses: dtolnay/rust-toolchain@nightly | ||
|
||
- name: Install cargo-fuzz | ||
run: cargo +nightly install cargo-fuzz | ||
|
||
- name: Fuzz chia-consensus | ||
run: | | ||
cd crates/chia-consensus | ||
cargo fuzz list | xargs -I "%" sh -c "cargo +nightly fuzz run % -- -max_total_time=20 || exit 255" | ||
- name: Fuzz chia-bls | ||
env: | ||
# We disable leak reports here because blspy appears to be allocating | ||
# memory that's not freed. It might be a false positive since python is | ||
# not unloaded before exiting. | ||
LSAN_OPTIONS: detect_leaks=0 | ||
run: | | ||
cd crates/chia-bls | ||
python -m pip install blspy | ||
cargo fuzz list | xargs -I "%" sh -c "cargo +nightly fuzz run % -- -max_total_time=10 || exit 255" | ||
- name: Fuzz clvm-utils | ||
run: | | ||
cd crates/clvm-utils | ||
cargo fuzz list | xargs -I "%" sh -c "cargo +nightly fuzz run % -- -max_total_time=20 || exit 255" | ||
- name: Fuzz chia-protocol | ||
run: | | ||
cd crates/chia-protocol | ||
cargo +nightly fuzz build | ||
cargo fuzz list | xargs -I "%" sh -c "cargo +nightly fuzz run % -- -max_total_time=20 || exit 255" | ||
- name: Fuzz chia-puzzles | ||
run: | | ||
cd crates/chia-puzzles | ||
cargo +nightly fuzz build | ||
cargo fuzz list | xargs -I "%" sh -c "cargo +nightly fuzz run % -- -max_total_time=20 || exit 255" |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.