declare zip name for Linux debug CI properly #11
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Build and Release (Windows CMake) | |
| on: | |
| push: | |
| branches: | |
| - master | |
| jobs: | |
| build: | |
| runs-on: windows-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 PyInstaller | |
| run: pip install pyinstaller | |
| - name: Configure CMake | |
| run: cmake -B build -S . -DCMAKE_BUILD_TYPE=Release | |
| - name: Build with CMake | |
| run: cmake --build build --config Release | |
| - 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-windows-cmake | |
| path: | | |
| LoaderMDO.exe | |
| SYSTEM.EXE | |
| SYSTEM_RussianRelease.EXE | |
| BCD1Creator.exe | |
| DEV7Launcher.exe | |
| OBJDumper.exe | |
| ModelPathDumper.exe | |
| IMGConverter.exe | |
| decoder.exe | |
| encoder.exe | |
| IMGIdentifier.exe | |
| OBCEditor.exe | |
| PetiteDetector.exe | |
| PKLiteDetector.exe | |
| SecuROMDetector.exe | |
| OBCViewer.exe | |
| CTRKViewer.exe | |
| PLAViewer.exe | |
| SetupPatcher.exe | |
| Y2K38Patcher.exe | |
| copyDatas.exe | |
| LOADER7VC.exe | |
| # DEV7Monitor.exe |