From 337289904e8b1f0909090e39b5bf6aa789caab60 Mon Sep 17 00:00:00 2001 From: Robin Jones Date: Sat, 5 Aug 2023 16:55:30 +0100 Subject: [PATCH] Add ED64 Plus (ED64P) build support (#33) ## Description The ED64 V1 Cart clones (commonly referred to as ED64 Plus) require a different file name and are more feature limited. This PR adds them to the build process. ## Motivation and Context Someone will add it, so it might as well be me. Hopefully some more users of them will get on board with this project. ## How Has This Been Tested? ## Screenshots ## Types of changes - [ ] Improvement (non-breaking change that adds a new feature) - [ ] Bug fix (fixes an issue) - [ ] Breaking change (breaking change) - [x] Config and build (change in the configuration and build system, has no impact on code or features) ## Checklist: - [ ] My code follows the code style of this project. - [ ] My change requires a change to the documentation. - [ ] I have updated the documentation accordingly. - [ ] I have added tests to cover my changes. - [ ] All new and existing tests passed. Signed-off-by: GITHUB_USER --- .github/workflows/build.yml | 6 ++++++ Makefile | 4 ++++ 2 files changed, 10 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6528f15d..fbd7116e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -59,6 +59,12 @@ jobs: name: ED64 path: ./output/OS64.v64 + - name: Upload artifact (ED64P version) + uses: actions/upload-artifact@v3 + with: + name: ED64P + path: ./output/OS64P.v64 + - name: Upload artifact (SC64 version) uses: actions/upload-artifact@v3 with: diff --git a/Makefile b/Makefile index 9e30b4d7..3c0d9063 100644 --- a/Makefile +++ b/Makefile @@ -94,6 +94,10 @@ ed64: $(BUILD_DIR)/$(PROJECT_NAME)_stripped.n64 $(shell cp $< $(OUTPUT_DIR)/OS64.v64) .PHONY: ed64 +ed64-clone: $(BUILD_DIR)/$(PROJECT_NAME)_stripped.n64 + $(shell cp $< $(OUTPUT_DIR)/OS64P.v64) +.PHONY: ed64-clone + sc64: $(BUILD_DIR)/$(PROJECT_NAME)_stripped.n64 $(shell cp $< $(OUTPUT_DIR)/sc64menu.n64) .PHONY: sc64