download recomp binaries instead of building

This commit is contained in:
Mike Grimes
2022-10-21 08:45:35 -06:00
parent db6a2b6556
commit 7d02c7eaf3
2 changed files with 9 additions and 13 deletions
+5 -7
View File
@@ -28,13 +28,11 @@ jobs:
- name: Verify ROM
run: if [[ $(echo "0cb115d8716dbbc2922fda38e533b9fe63bb9670 baseroms/dkr.z64" | sha1sum -c --quiet -) = "" ]]; then echo "Signature OK"; else echo "Failed"; exit 1; fi
- name: Build Recomp
- name: Download Recomp
run: |
cd tools/ido-static-recomp/
python3 build.py ido/5.3 -O2
cp build5.3/out/usr/bin/cc build5.3/out/cc
cp build5.3/out/usr/lib/* build5.3/out/
cd ../../
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: Build Tools
run: |
@@ -63,4 +61,4 @@ jobs:
run: make clean
- name: Verify NON_EQUIVALENT
run: make NON_EQUIVALENT=1
run: make NON_EQUIVALENT=1
+4 -6
View File
@@ -28,13 +28,11 @@ jobs:
- name: Verify ROM
run: if [[ $(echo "0cb115d8716dbbc2922fda38e533b9fe63bb9670 baseroms/dkr.z64" | sha1sum -c --quiet -) = "" ]]; then echo "Signature OK"; else echo "Failed"; exit 1; fi
- name: Build Recomp
- name: Download Recomp
run: |
cd tools/ido-static-recomp/
python3 build.py ido/5.3 -O2
cp build5.3/out/usr/bin/cc build5.3/out/cc
cp build5.3/out/usr/lib/* build5.3/out/
cd ../../
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: Build Tools
run: |