-
Notifications
You must be signed in to change notification settings - Fork 0
84 lines (67 loc) · 2.39 KB
/
Copy pathwindows-cmake.yml
File metadata and controls
84 lines (67 loc) · 2.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
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