Merge pull request #186 from gwilymk/fail-build-if-there-is-an-error

Fail build if there is an error
This commit is contained in:
Gwilym Kuiper 2022-03-13 20:22:45 +00:00 committed by GitHub
commit add3ccd5fb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 14 deletions

View file

@ -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),
]
);
}

View file

@ -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,

View file

@ -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)