-
Notifications
You must be signed in to change notification settings - Fork 0
66 lines (51 loc) · 1.47 KB
/
build.yml
File metadata and controls
66 lines (51 loc) · 1.47 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
name: Build HUI
on:
workflow_dispatch: # Allows manual trigger
jobs:
build-linux-gtk3:
name: Build Linux GTK3 x64
runs-on: ubuntu-22.04
steps:
- name: Checkout repository
uses: actions/checkout@v3
# - name: Python version
# uses: actions/setup-python@v5
# with:
# python-version: 3.13
- name: Run script
run: |
chmod +x ./build_linux_gtk3.sh
sudo apt update
./build_linux_gtk3.sh --dependencies --deploy --tests
cd HUI-linux-x86_64-webkit-gtk3
python3 ../python/build.py
- name: Upload build artifacts
uses: actions/upload-artifact@v4
with:
name: linux-gtk3-build
path: HUI-linux-*/
build-win-cef:
name: Build Windows CEF x64
runs-on: windows-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Python version
uses: actions/setup-python@v5
with:
python-version: 3.13
- name: MSVC cmd
uses: TheMrMilchmann/setup-msvc-dev@v3
with:
arch: x64
- name: Run script
run: |
choco install 7zip -y
./build_win_cef.bat --dependencies --deploy --tests
cd HUI-win-AMD64-blink-cef
python ../python/build.py
- name: Upload build artifacts
uses: actions/upload-artifact@v4
with:
name: windows-cef-build
path: HUI-win-*/