Skip to content

improve loader7 decompilation #531

improve loader7 decompilation

improve loader7 decompilation #531

Workflow file for this run

name: Build and Release (macOS)
on:
push:
branches:
- master
jobs:
build:
runs-on: macos-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python 3
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install Brew deps
run: |
brew bundle install
- name: Run configure
run: ./configure
- name: Compile all C++ programs
run: make cmake
- name: Compile IMGConverter
run: pyinstaller --onefile --distpath . tools/IMGConverter/IMGConverter.py
- name: Compile AdultCornerDecoder
run: pyinstaller --onefile --distpath . tools/AdultCornerDecoder/decoder.py
- name: Compile AdultCornerEncoder
run: pyinstaller --onefile --distpath . tools/AdultCornerEncoder/encoder.py
- name: Compile IMGIdentifier
run: pyinstaller --onefile --distpath . tools/IMGIdentifier/IMGIdentifier.py
- name: Compile OBCEditor
run: pyinstaller --onefile --distpath . tools/OBCEditor/OBCEditor.py
- name: Compile PetiteDetector
run: pyinstaller --onefile --distpath . tools/PetiteDetector/PetiteDetector.py
- name: Compile PKLiteDetector
run: pyinstaller --onefile --distpath . tools/PKLiteDetector/PKLiteDetector.py
- name: Compile SecuROMDetector
run: pyinstaller --onefile --distpath . tools/SecuROMDetector/SecuROMDetector.py
- name: Compile copyDatas
run: pyinstaller --onefile --distpath . tools/copyDatas/copyDatas.py
- name: Upload Artifacts
uses: actions/upload-artifact@v4
with:
name: compiled-macos
path: |
binaries/LoaderMDO
binaries/BCD1Creator
binaries/DEV7Launcher
binaries/ModelPathDumper
binaries/OBJDumper
binaries/OBCViewer
binaries/CTRKViewer
binaries/PLAViewer
IMGConverter
AdultCornerDecoder
AdultCornerEncoder
IMGIdentifier
OBCEditor
PetiteDetector
PKLiteDetector
SecuROMDetector
copyDatas