-
-
Notifications
You must be signed in to change notification settings - Fork 144
147 lines (146 loc) · 4.28 KB
/
Copy pathmain.yml
File metadata and controls
147 lines (146 loc) · 4.28 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
name: build
on:
push:
branches:
- master
- main
- working
jobs:
build-win64:
runs-on: windows-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v6
- name: Setup Python 3.13
uses: actions/setup-python@v6
with:
python-version: 3.14
- name: Setup git SDK
uses: Shadowghost/setup-git-for-windows-sdk@node-24
with:
flavor: minimal
- name: Download mpv
id: mpv
uses: robinraju/release-downloader@v1
with:
repository: 'shinchiro/mpv-winbuild-cmake'
latest: true
fileName: 'mpv-dev-x86_64-v3*.7z'
- name: Install dependencies
run: |
7z x "${{ fromJson(steps.mpv.outputs.downloaded_files)[0] }}"
mv libmpv-2.dll mpv-2.dll
pip install wheel
pip install .[all] pywin32
winget install --id JRSoftware.InnoSetup -e -s winget || true || true
./gen_pkg.sh --skip-build
shell: bash
- name: PyInstaller Bootloader
run: |
./gen_pkg.sh --get-pyinstaller; cd pyinstaller/bootloader; python ./waf distclean all; cd ..; pip install .
shell: bash
- name: Main Build
run: |
.\build-win.bat
shell: cmd
- name: Artifact Rename
run: |
./artifacts.sh standard
shell: bash
- name: Archive production artifacts
uses: actions/upload-artifact@v7
with:
name: windows
path: ${{ github.workspace }}/publish/Installer/*.exe
build-win64-legacy:
runs-on: windows-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v6
- name: Setup Python 3.13
uses: actions/setup-python@v6
with:
python-version: 3.14
- name: Setup git SDK
uses: Shadowghost/setup-git-for-windows-sdk@node-24
with:
flavor: minimal
- name: Download mpv
id: mpv
uses: robinraju/release-downloader@v1
with:
repository: 'shinchiro/mpv-winbuild-cmake'
latest: true
fileName: 'mpv-dev-x86_64-[0-9]*-git-*.7z'
- name: Install dependencies
run: |
7z x "${{ fromJson(steps.mpv.outputs.downloaded_files)[0] }}"
mv libmpv-2.dll mpv-2.dll
pip install wheel
pip install .[all] pywin32
winget install --id JRSoftware.InnoSetup -e -s winget || true
./gen_pkg.sh --skip-build
shell: bash
- name: PyInstaller Bootloader
run: |
./gen_pkg.sh --get-pyinstaller; cd pyinstaller/bootloader; python ./waf distclean all; cd ..; pip install .
shell: bash
- name: Main Build
run: |
.\build-win.bat
shell: cmd
- name: Artifact Rename
run: |
./artifacts.sh legacy64
shell: bash
- name: Archive production artifacts
uses: actions/upload-artifact@v7
with:
name: windows-legacy64
path: ${{ github.workspace }}/publish/Installer/*.exe
build-win32-legacy:
runs-on: windows-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v6
- name: Setup Python 3.13
uses: actions/setup-python@v6
with:
python-version: 3.14
- name: Setup git SDK
uses: Shadowghost/setup-git-for-windows-sdk@node-24
with:
flavor: minimal
- name: Download mpv
id: mpv
uses: robinraju/release-downloader@v1
with:
repository: 'shinchiro/mpv-winbuild-cmake'
latest: true
fileName: 'mpv-dev-i686*.7z'
- name: Install dependencies
run: |
7z x "${{ fromJson(steps.mpv.outputs.downloaded_files)[0] }}"
mv libmpv-2.dll mpv-2.dll
pip install wheel
pip install .[all] pywin32
winget install --id JRSoftware.InnoSetup -e -s winget || true
./gen_pkg.sh --skip-build
shell: bash
- name: PyInstaller Bootloader
run: |
./gen_pkg.sh --get-pyinstaller; cd pyinstaller/bootloader; python ./waf distclean all; cd ..; pip install .
shell: bash
- name: Legacy Build
run: |
.\build-win-32.bat
shell: cmd
- name: Artifact Rename
run: |
./artifacts.sh legacy
shell: bash
- name: Archive production artifacts
uses: actions/upload-artifact@v7
with:
name: windows-legacy32
path: ${{ github.workspace }}/publish/InstallerLegacy/*.exe