mirror of
https://github.com/izzy2lost/Diddy-Kong-Racing.git
synced 2026-06-19 01:16:26 -07:00
refac: split verification steps into separate GH jobs. Fix score.py script crashing because of missing key. Update README to include ROM hash
This commit is contained in:
@@ -1,73 +1,54 @@
|
||||
name: Verify Build
|
||||
|
||||
on:
|
||||
pull_request_target:
|
||||
branches: [master]
|
||||
push:
|
||||
branches: [ master ]
|
||||
# pull_request:
|
||||
# branches: [ master ]
|
||||
branches: [master]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
if: ${{ github.event.pull_request.head.repo.full_name == github.repository || github.event_name == 'push' }}
|
||||
if: ${{ github.event.pull_request.head.repo.full_name != github.repository }}
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
with:
|
||||
submodules: recursive
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
with:
|
||||
submodules: recursive
|
||||
ref: ${{ github.event.pull_request.head.ref }}
|
||||
repository: ${{ github.event.pull_request.head.repo.full_name }}
|
||||
|
||||
- name: Install packages
|
||||
run: |
|
||||
sudo apt-get update
|
||||
sudo apt-get install -y build-essential pkg-config git python3 libssl-dev wget binutils-mips-linux-gnu
|
||||
- name: Install packages
|
||||
run: |
|
||||
sudo apt-get update
|
||||
sudo apt-get install -y build-essential pkg-config git python3 libssl-dev wget binutils-mips-linux-gnu
|
||||
|
||||
- name: Get ROM
|
||||
run: wget -q -O baseroms/dkr.z64 ${{secrets.ROMURL}}
|
||||
- name: Get ROM
|
||||
run: wget -q -O baseroms/dkr.z64 ${{secrets.ROMURL}}
|
||||
|
||||
- name: Verify ROM
|
||||
run: if [[ $(echo "0cb115d8716dbbc2922fda38e533b9fe63bb9670 baseroms/dkr.z64" | sha1sum -c --quiet -) = "" ]]; then echo "Signature OK"; else echo "Failed"; exit 1; fi
|
||||
- name: Verify ROM
|
||||
run: if [[ $(echo "0cb115d8716dbbc2922fda38e533b9fe63bb9670 baseroms/dkr.z64" | sha1sum -c --quiet -) = "" ]]; then echo "Signature OK"; else echo "Failed"; exit 1; fi
|
||||
|
||||
- name: Download Recomp
|
||||
run: |
|
||||
wget -q -O ido-static-recomp.tar.gz https://github.com/decompals/ido-static-recomp/releases/download/v0.1/ido-5.3-recomp-ubuntu-latest.tar.gz
|
||||
mkdir -p tools/ido-static-recomp/build5.3/out
|
||||
tar -xvzf ido-static-recomp.tar.gz -C tools/ido-static-recomp/build5.3/out
|
||||
- name: Download Recomp
|
||||
run: |
|
||||
wget -q -O ido-static-recomp.tar.gz https://github.com/decompals/ido-static-recomp/releases/download/v1.0/ido-5.3-recomp-linux.tar.gz
|
||||
mkdir -p tools/ido-static-recomp/build5.3/out
|
||||
tar -xvzf ido-static-recomp.tar.gz -C tools/ido-static-recomp/build5.3/out
|
||||
|
||||
- name: Build Tools
|
||||
run: |
|
||||
cd tools
|
||||
make -j4
|
||||
cd ..
|
||||
- name: Build Tools
|
||||
run: |
|
||||
cd tools
|
||||
make -j4
|
||||
cd ..
|
||||
|
||||
- name: Extract Assets
|
||||
run: |
|
||||
./extract.sh
|
||||
python3 tools/python/check_if_need_to_extract.py us_1.0
|
||||
- name: Extract Assets
|
||||
run: |
|
||||
./extract.sh
|
||||
python3 tools/python/check_if_need_to_extract.py us_1.0
|
||||
|
||||
- name: Build ROM
|
||||
run: make -j4
|
||||
- name: Build ROM
|
||||
run: make -j4
|
||||
|
||||
- name: Verify Build
|
||||
run: if [[ $(sha1sum -c --quiet sha1/dkr.us_1.0.sha1) = "" ]]; then echo "Signature OK"; else echo "Failed"; exit 1; fi
|
||||
|
||||
- name: Update Score
|
||||
run: ./update-score.sh
|
||||
|
||||
- name: Create Pull Request
|
||||
uses: peter-evans/create-pull-request@v4
|
||||
with:
|
||||
add-paths: README.md
|
||||
commit-message: "Update score"
|
||||
|
||||
- name: Clean Build
|
||||
run: make clean
|
||||
|
||||
- name: Verify NON_MATCHING
|
||||
run: make -j4 NON_MATCHING=1
|
||||
|
||||
- name: Clean Again
|
||||
run: make clean
|
||||
|
||||
- name: Verify NON_EQUIVALENT
|
||||
run: make -j4 NON_EQUIVALENT=1
|
||||
- name: Verify Build
|
||||
run: if [[ $(sha1sum -c --quiet sha1/dkr.us_1.0.sha1) = "" ]]; then echo "Signature OK"; else echo "Failed"; exit 1; fi
|
||||
@@ -1,65 +0,0 @@
|
||||
name: Verify PR
|
||||
|
||||
on:
|
||||
pull_request_target:
|
||||
branches: [ master ]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
if: ${{ github.event.pull_request.head.repo.full_name != github.repository }}
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
with:
|
||||
submodules: recursive
|
||||
ref: ${{ github.event.pull_request.head.ref }}
|
||||
repository: ${{ github.event.pull_request.head.repo.full_name }}
|
||||
|
||||
- name: Install packages
|
||||
run: |
|
||||
sudo apt-get update
|
||||
sudo apt-get install -y build-essential pkg-config git python3 libssl-dev wget binutils-mips-linux-gnu
|
||||
|
||||
- name: Get ROM
|
||||
run: wget -q -O baseroms/dkr.z64 ${{secrets.ROMURL}}
|
||||
|
||||
- name: Verify ROM
|
||||
run: if [[ $(echo "0cb115d8716dbbc2922fda38e533b9fe63bb9670 baseroms/dkr.z64" | sha1sum -c --quiet -) = "" ]]; then echo "Signature OK"; else echo "Failed"; exit 1; fi
|
||||
|
||||
- name: Download Recomp
|
||||
run: |
|
||||
wget -q -O ido-static-recomp.tar.gz https://github.com/decompals/ido-static-recomp/releases/download/v1.0/ido-5.3-recomp-linux.tar.gz
|
||||
mkdir -p tools/ido-static-recomp/build5.3/out
|
||||
tar -xvzf ido-static-recomp.tar.gz -C tools/ido-static-recomp/build5.3/out
|
||||
|
||||
- name: Build Tools
|
||||
run: |
|
||||
cd tools
|
||||
make -j4
|
||||
cd ..
|
||||
|
||||
- name: Extract Assets
|
||||
run: |
|
||||
./extract.sh
|
||||
python3 tools/python/check_if_need_to_extract.py us_1.0
|
||||
|
||||
- name: Build ROM
|
||||
run: make -j4
|
||||
|
||||
- name: Verify Build
|
||||
run: if [[ $(sha1sum -c --quiet sha1/dkr.us_1.0.sha1) = "" ]]; then echo "Signature OK"; else echo "Failed"; exit 1; fi
|
||||
|
||||
- name: Clean Build
|
||||
run: make clean
|
||||
|
||||
- name: Verify NON_MATCHING
|
||||
run: make -j4 NON_MATCHING=1
|
||||
|
||||
- name: Clean Again
|
||||
run: make clean
|
||||
|
||||
- name: Verify NON_EQUIVALENT
|
||||
run: make -j4 NON_EQUIVALENT=1
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
This repo contains a work-in-progress decompilation of Diddy Kong Racing for the N64. You will need to have a original copy of the ROM to extract the game's assets.
|
||||
|
||||
Currently, only the US 1.0 version of the game is supported. US 1.1, EU 1.0, EU 1.1, and JP are not supported at this time.
|
||||
Currently, only the US 1.0 version (SHA1 = 0cb115d8716dbbc2922fda38e533b9fe63bb9670) of the game is supported. US 1.1, EU 1.0, EU 1.1, and JP are not supported at this time.
|
||||
|
||||
<!-- README_SCORE_SUMMARY_BEGIN -->
|
||||
As of July 4, 2024, this is our current score:
|
||||
|
||||
@@ -92,7 +92,10 @@ class ScoreFileMatch:
|
||||
self.comment = comment
|
||||
self.functionName = functionName
|
||||
self.isDocumented = (comment != None) and not functionName.startswith("func_")
|
||||
self.size = MAP_FILE.functionSizes[functionName]
|
||||
if functionName in MAP_FILE.functionSizes:
|
||||
self.size = MAP_FILE.functionSizes[functionName]
|
||||
else:
|
||||
self.size = 0
|
||||
|
||||
class ScoreFile:
|
||||
def __init__(self, filepath):
|
||||
|
||||
Reference in New Issue
Block a user