diff --git a/agb-fixnum/src/lib.rs b/agb-fixnum/src/lib.rs index a7a84f6..efa6586 100644 --- a/agb-fixnum/src/lib.rs +++ b/agb-fixnum/src/lib.rs @@ -936,19 +936,12 @@ mod tests { (5, 5), (6, 5), (7, 5), - (8, 5), (5, 6), (6, 6), (7, 6), - (8, 6), (5, 7), (6, 7), (7, 7), - (8, 7), - (5, 8), - (6, 8), - (7, 8), - (8, 8), ] ); } diff --git a/agb/src/display/tiled/vram_manager.rs b/agb/src/display/tiled/vram_manager.rs index 7a3c31c..b3cc2fe 100644 --- a/agb/src/display/tiled/vram_manager.rs +++ b/agb/src/display/tiled/vram_manager.rs @@ -109,7 +109,7 @@ pub struct VRamManager<'a> { } impl<'a> VRamManager<'a> { - pub fn new() -> Self { + pub(crate) fn new() -> Self { Self { tilesets: Vec::new(), generation: 0, diff --git a/justfile b/justfile index 82e36a0..fe40dc5 100644 --- a/justfile +++ b/justfile @@ -22,12 +22,11 @@ run-game game: run-game-debug game: (cd "examples/{{game}}" && cargo run) -ci: && build-roms +ci: && build-roms build-book just _all-crates _build just _all-crates _test-debug just _all-crates _test-release just _all-crates _clippy - just build-book build-roms: just _build-rom "examples/the-purple-night" "PURPLENIGHT" @@ -67,17 +66,17 @@ _build-rom folder name: _all-crates target: for CARGO_PROJECT_FILE in agb-*/Cargo.toml agb/Cargo.toml examples/*/Cargo.toml book/games/*/Cargo.toml; do \ PROJECT_DIR=$(dirname "$CARGO_PROJECT_FILE"); \ - just "{{target}}" "$PROJECT_DIR"; \ + just "{{target}}" "$PROJECT_DIR" || exit $?; \ done _build crate: (cd "{{crate}}" && cargo build) _test-release crate: - if echo "{{crate}}" | grep -qE '^agb'; then (cd "{{crate}}" && cargo test --release); fi + {{ if crate =~ 'agb.*' { "cd " + crate + " && cargo test --release" } else { "" } }} _test-debug crate: - if echo "{{crate}}" | grep -qE '^agb'; then (cd "{{crate}}" && cargo test); fi + {{ if crate =~ 'agb.*' { "cd " + crate + " && cargo test" } else { "" } }} _clippy crate: - if echo "{{crate}}" | grep -qE '^agb'; then (cd "{{crate}}" && cargo clippy); fi + {{ if crate =~ 'agb.*' { "cd " + crate + " && cargo clippy" } else { "" } }} _clean crate: (cd "{{crate}}" && cargo clean)