Skip to content

Commit

Permalink
Updates
Browse files Browse the repository at this point in the history
  • Loading branch information
c410-f3r committed Oct 19, 2023
1 parent 3773ea6 commit c4b80fc
Show file tree
Hide file tree
Showing 111 changed files with 1,801 additions and 3,177 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
uses: actions-rs/toolchain@v1
with:
components: clippy, rustfmt
toolchain: stable
toolchain: nightly-2022-01-28
profile: minimal
override: true

Expand Down
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
*.rs.bk
target
artifacts
corpus
target
File renamed without changes.
20 changes: 20 additions & 0 deletions .scripts/tests.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
#!/usr/bin/env bash

set -euxo pipefail

rt='rust-tools --template you-rust'

export CARGO_TARGET_DIR="$($rt target-dir)"
export RUST_BACKTRACE=1
export RUSTFLAGS="$($rt rust-flags '' -Dmissing_docs,-Dunstable_features,-Dunused_crate_dependencies,-Dvariant_size_differences)"

$rt rustfmt
#$rt clippy

$rt test-generic mop
$rt test-with-features mop ndstruct
$rt test-with-features mop rand
$rt test-with-features mop rayon
$rt test-with-features mop serde
$rt test-with-features mop std
$rt test-with-features mop wasm-bindgen
Loading

0 comments on commit c4b80fc

Please sign in to comment.