From e6963fe3773329f7e37901c7936d94ca264ee22f Mon Sep 17 00:00:00 2001 From: Gwilym Kuiper Date: Fri, 9 Dec 2022 21:18:15 +0000 Subject: [PATCH 1/2] Stop building dependency docs while testing docs --- justfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/justfile b/justfile index 9090733e..fbabaa85 100644 --- a/justfile +++ b/justfile @@ -25,11 +25,11 @@ doctest-agb: (cd agb && cargo test --doc -Z doctest-xcompile) check-docs: - (cd agb && cargo doc --target=thumbv6m-none-eabi) + (cd agb && cargo doc --target=thumbv6m-none-eabi --no-deps) just _build_docs agb-fixnum _build_docs crate: - (cd "{{crate}}" && cargo doc) + (cd "{{crate}}" && cargo doc --no-deps) clean: just _all-crates _clean From 14b4656842aa81c01699914da80e68ba904a28e4 Mon Sep 17 00:00:00 2001 From: Gwilym Kuiper Date: Fri, 9 Dec 2022 21:41:47 +0000 Subject: [PATCH 2/2] Add the combo rom to the distributed roms --- justfile | 1 + 1 file changed, 1 insertion(+) diff --git a/justfile b/justfile index fbabaa85..2f5a32a6 100644 --- a/justfile +++ b/justfile @@ -58,6 +58,7 @@ build-roms: just _build-rom "examples/the-purple-night" "PURPLENIGHT" just _build-rom "examples/the-hat-chooses-the-wizard" "HATWIZARD" just _build-rom "examples/hyperspace-roll" "HYPERSPACE" + just _build-rom "examples/combo" "AGBJAMS" just _build-rom "book/games/pong" "PONG"