From 721aba3c76fe570cee922e35f5c7d986d9ecc35f Mon Sep 17 00:00:00 2001 From: Gwilym Inzani Date: Wed, 18 Oct 2023 12:09:01 +0100 Subject: [PATCH] Remove linker script consistency checks and helpers --- justfile | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/justfile b/justfile index 1aee24b2..a922e0a2 100644 --- a/justfile +++ b/justfile @@ -65,11 +65,7 @@ run-game game: run-game-debug game: (cd "examples/{{game}}" && cargo run) -check-linker-script-consistency: - find -type f -name gba.ld -print0 | xargs -0 -n1 cmp -- agb/gba.ld - find -type f -name gba_mb.ld -print0 | xargs -0 -n1 cmp -- agb/gba_mb.ld - -ci: check-linker-script-consistency build-debug clippy fmt-check test miri build-release test-release doctest-agb test-games build-roms build-book check-docs +ci: build-debug clippy fmt-check test miri build-release test-release doctest-agb test-games build-roms build-book check-docs build-roms: just _build-rom "examples/the-purple-night" "PURPLENIGHT" @@ -89,10 +85,6 @@ build-book: update-lockfiles *args: bash .github/scripts/update-lockfiles.sh {{args}} -update-linker-scripts: - find -type f -name gba.ld | grep -v ./agb/gba.ld | xargs -n1 cp -v -- agb/gba.ld - find -type f -name gba_mb.ld | grep -v ./agb/gba_mb.ld | xargs -n1 cp -v -- agb/gba_mb.ld - publish *args: (_run-tool "publish" args) release +args: (_run-tool "release" args)