-
Notifications
You must be signed in to change notification settings - Fork 0
180 lines (153 loc) · 4.91 KB
/
build-all-in-one.yml
File metadata and controls
180 lines (153 loc) · 4.91 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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
name: Build All-in-one
on:
push:
branches: ["main"]
workflow_dispatch:
jobs:
build_windows_x64:
name: Build for Windows (x64)
runs-on: windows-2022
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build
run: ./Update-Win64.ps1
shell: pwsh
working-directory: ./scripts
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
name: build-windows-x64
path: output/CefViewCore/
build_macos_universal:
name: Build for macOS (x64 & ARM64)
runs-on: macos-14
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Select specific Xcode version
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: "15.4"
- name: Verify Xcode version
run: xcodebuild -version
- name: Build
run: |
chmod +x Update-Mac.sh
./Update-Mac.sh
shell: bash
working-directory: ./scripts
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
name: build-macos-universal
path: output/CefViewCore/
build_linux_x64:
name: Build for Linux (x64)
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Dependencies
run: |
sudo apt-get update
sudo apt-get install -y build-essential clang cmake git libc++-dev libc++abi-dev libx11-dev
- name: Build
run: |
chmod +x Update-Linux.sh
./Update-Linux.sh
shell: bash
working-directory: ./scripts
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
name: build-linux-x64
path: output/CefViewCore/
build_linux_arm64:
name: Build for Linux (ARM64)
runs-on: ubuntu-24.04-arm
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Dependencies
run: |
sudo apt-get update
sudo apt-get install -y build-essential clang cmake git libc++-dev libc++abi-dev libx11-dev
- name: Build
run: |
chmod +x Update-LinuxArm64.sh
./Update-LinuxArm64.sh
working-directory: ./scripts
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
name: build-linux-arm64
path: output/CefViewCore/
package:
name: Package All-in-one Artifact
needs:
[
build_windows_x64,
build_macos_universal,
build_linux_x64,
build_linux_arm64,
]
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Download all artifacts
uses: actions/download-artifact@v4
with:
path: artifacts
- name: Combine artifacts
run: |
mkdir -p final_artifact
# Recursively copy the contents of each artifact directory
# The -n/--no-clobber option prevents overwriting files, although conflicts should not happen with this structure
cp -rT artifacts/build-windows-x64 final_artifact
cp -rT artifacts/build-macos-universal final_artifact
cp -rT artifacts/build-linux-x64 final_artifact
cp -rT artifacts/build-linux-arm64 final_artifact
- name: Create Version File
run: cp scripts/ThirdParty-Config.txt final_artifact/VERSION
- name: Upload final artifact
uses: actions/upload-artifact@v4
with:
name: CefViewCore-binaries
path: final_artifact/
release:
name: Create GitHub Release
needs: package
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Download CefViewCore-binaries artifact
uses: actions/download-artifact@v4
with:
name: CefViewCore-binaries
path: CefViewCore-binaries
- name: Get versions from config file
id: versions
run: |
CEF_VERSION=$(grep "CEF_VERSION=" scripts/ThirdParty-Config.txt | cut -d'=' -f2)
CORE_VERSION=$(grep "CORE_VERSION=" scripts/ThirdParty-Config.txt | cut -d'=' -f2)
CEF_VERSION_MAJOR_MINOR_PATCH=$(echo "$CEF_VERSION" | cut -d'+' -f1)
CORE_VERSION_SHORT=$(echo "$CORE_VERSION" | cut -c1-7)
TAG_NAME="${CEF_VERSION_MAJOR_MINOR_PATCH}+${CORE_VERSION_SHORT}"
echo "tag_name=${TAG_NAME}" >> $GITHUB_OUTPUT
echo "zip_name=CefViewCore-binaries-${TAG_NAME}.zip" >> $GITHUB_OUTPUT
- name: Zip the artifact
run: |
cd CefViewCore-binaries
zip -r ../${{ steps.versions.outputs.zip_name }} .
cd ..
shell: bash
- name: Create Release
uses: softprops/action-gh-release@v2
with:
tag_name: ${{ steps.versions.outputs.tag_name }}
files: ${{ steps.versions.outputs.zip_name }}