forked from GabLeRoux/macos-crossover-wine-cloud-builder
-
Notifications
You must be signed in to change notification settings - Fork 1
348 lines (288 loc) · 12.1 KB
/
build_monolithic.yml
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
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
name: Wine-Crossover-MacOS
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
env:
# avoid weird linker errors with Xcode 10 and later
MACOSX_DEPLOYMENT_TARGET: 10.14
# directories / files inside the downloaded tar file directory structure
WINE_CONFIGURE: ${{ github.workspace }}/sources/wine/configure
DXVK_BUILDSCRIPT: ${{ github.workspace }}/sources/dxvk/package-release.sh
# build directories
BUILDROOT: ${{ github.workspace }}/build
LLVM_BUILDDIR: ${{ github.workspace }}/build/llvm
CLANG_BUILDDIR: ${{ github.workspace }}/build/clang
# target directory for installation
INSTALLROOT: ${{ github.workspace }}/install
jobs:
wine-crossover:
strategy:
fail-fast: false
matrix:
CROSS_OVER_VERSION: [21.0.0] # , 20.0.4, 20.0.2, 20.0.1, 20.0.0, 19.0.2]
runs-on: macos-10.15
env:
# crossover source code to be downloaded
CROSS_OVER_SOURCE_URL: https://media.codeweavers.com/pub/crossover/source/crossover-sources-${{ matrix.CROSS_OVER_VERSION }}.tar.gz
CROSS_OVER_LOCAL_FILE: crossover-${{ matrix.CROSS_OVER_VERSION }}
# directories / files inside the downloaded tar file directory structure
LLVM_MAKEDIR: $GITHUB_WORKSPACE/sources/${{ startsWith(matrix.CROSS_OVER_VERSION, '2') && 'clang/llvm' || 'llvm' }}
CLANG_MAKEDIR: $GITHUB_WORKSPACE/sources/${{ startsWith(matrix.CROSS_OVER_VERSION, '2') && 'clang/clang' || 'clang' }}
# artifact names
TOOLS_INSTALLATION: build-tools-cx${{ matrix.CROSS_OVER_VERSION }}
WINE_INSTALLATION: wine-cx${{ matrix.CROSS_OVER_VERSION }}
DXVK_INSTALLATION: dxvk-cx${{ matrix.CROSS_OVER_VERSION }}
steps:
############ Prepare Workspace / Environment ##############
- name: Checkout
uses: actions/checkout@v2
- name: Install Dependencies
run: |
# build tools
brew install cmake \
ninja \
mingw-w64 \
# build dependencies for wine / crossover
brew install freetype \
bison \
krb5 \
faudio \
sdl2 \
gphoto2 \
sane-backends \
gst-plugins-base \
mpg123 \
little-cms2 \
libpng \
molten-vk
# dependencies for dxvk
brew install coreutils \
meson \
glslang
- name: Add bison & krb5 to $PATH
run: |
set -x
echo "$(brew --prefix bison)/bin" >> $GITHUB_PATH
echo "$(brew --prefix krb5)/bin" >> $GITHUB_PATH
- name: Add llvm/clang to $PATH (for later)
run: |
set -x
echo "${{ env.INSTALLROOT }}/${{ env.TOOLS_INSTALLATION }}/bin" >> $GITHUB_PATH
############ Download and Prepare Source Code ##############
- name: Get Source
run: |
curl -o ${{ env.CROSS_OVER_LOCAL_FILE }}.tar.gz ${{ env.CROSS_OVER_SOURCE_URL }}
- name: Extract Source
run: |
tar xf ${{ env.CROSS_OVER_LOCAL_FILE }}.tar.gz
- name: Add missing llvm/clang
if: ${{ matrix.CROSS_OVER_VERSION == '20.0.1' || matrix.CROSS_OVER_VERSION == '20.0.2' }}
run: |
curl -o crossover-20.0.0.tar.gz https://media.codeweavers.com/pub/crossover/source/crossover-sources-20.0.0.tar.gz
tar -xf crossover-20.0.0.tar.gz sources/clang
- name: Add distversion.h
run: cp distversion.h sources/wine/include/distversion.h
- name: Patch wcslen() in ntdll/wcstring.c to prevent crash if a nullptr is suppluied to the function (HACK)
if: startsWith(matrix.CROSS_OVER_VERSION, '20')
run: patch sources/wine/dlls/ntdll/wcstring.c < wcstring.patch
- name: Patch DXVK
if: startsWith(matrix.CROSS_OVER_VERSION, '20')
run: patch sources/dxvk/src/util/rc/util_rc_ptr.h < dxvk_util_rc_ptr.patch
############ Build LLVM / Clang ##############
- name: Configure LLVM
run: |
set -x
mkdir -p ${{ env.LLVM_BUILDDIR }}
pushd ${{ env.LLVM_BUILDDIR }}
cmake -G Ninja \
-DLLVM_TARGETS_TO_BUILD=X86 \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX="${{ env.INSTALLROOT }}/${{ env.TOOLS_INSTALLATION }}" \
${{ env.LLVM_MAKEDIR }}
popd
- name: Build LLVM
run: |
pushd ${{ env.LLVM_BUILDDIR }}
Ninja
popd
- name: Install LLVM
run: |
pushd ${{ env.LLVM_BUILDDIR }}
Ninja install
popd
- name: Configure Clang
run: |
set -x
mkdir -p ${{ env.CLANG_BUILDDIR }}
pushd ${{ env.CLANG_BUILDDIR }}
cmake -G Ninja \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX="${{ env.INSTALLROOT }}/${{ env.TOOLS_INSTALLATION }}" \
${{ env.CLANG_MAKEDIR }}
popd
- name: Build Clang
run: |
pushd ${{ env.CLANG_BUILDDIR }}
Ninja
popd
- name: Install Clang
run: |
pushd ${{ env.CLANG_BUILDDIR }}
Ninja install
popd
- name: Tar Build Tools
run: |
set -x
pushd ${{ env.INSTALLROOT }}
tar -czf ${{ env.TOOLS_INSTALLATION }}.tar.gz ${{ env.TOOLS_INSTALLATION }}
ls -alt
popd
- name: Upload Build Tools
uses: actions/upload-artifact@v2
with:
name: ${{ env.TOOLS_INSTALLATION }}
path: ${{ env.INSTALLROOT }}/${{ env.TOOLS_INSTALLATION }}.tar.gz
############ Build DXVK ##############
- name: Build DXVK
if: startsWith(matrix.CROSS_OVER_VERSION, '20')
run: |
set -x
PATH="$(brew --prefix coreutils)/libexec/gnubin:${PATH}" ${{ env.DXVK_BUILDSCRIPT }} master ${{ env.INSTALLROOT }}/${{ env.DXVK_INSTALLATION }} --no-package
- name: Tar DXVK
if: startsWith(matrix.CROSS_OVER_VERSION, '20')
run: |
set -x
pushd ${{ env.INSTALLROOT }}
tar -czf ${{ env.DXVK_INSTALLATION }}.tar.gz ${{ env.DXVK_INSTALLATION }}
popd
- name: Upload DXVK
if: startsWith(matrix.CROSS_OVER_VERSION, '20')
uses: actions/upload-artifact@v2
with:
name: ${{ env.DXVK_INSTALLATION }}
path: ${{ env.INSTALLROOT }}/${{ env.DXVK_INSTALLATION }}.tar.gz
############ Build 64bit Version ##############
- name: Configure wine64
env:
CC: clang
CXX: clang++
# see https://github.com/Gcenx/macOS_Wine_builds/issues/17#issuecomment-750346843
CROSSCFLAGS: "-g -O2 -fcommon"
# Xcode12 by default enables '-Werror,-Wimplicit-function-declaration' (49917738)
# this causes wine(64) builds to fail so needs to be disabled.
# https://developer.apple.com/documentation/xcode-release-notes/xcode-12-release-notes
CFLAGS: "-g -O2 -Wno-implicit-function-declaration -Wno-deprecated-declarations -Wno-format"
LDFLAGS: "-Wl,-headerpad_max_install_names"
run: |
set -x
export SDL2_CFLAGS="-I$(brew --prefix sdl2)/"$([[ ${{ env.CROSS_OVER_VERSION }} == 21.* ]] && echo "include/SDL2" || echo "include")
export GPHOTO2_CFLAGS="-I$(brew --prefix libgphoto2)/include -I$(brew --prefix libgphoto2)/include/gphoto2"
export GPHOTO2_PORT_CFLAGS="-I$(brew --prefix libgphoto2)/include -I$(brew --prefix libgphoto2)/include/gphoto2"
export PNG_CFLAGS="-I$(brew --prefix libpng)/include"
export PNG_LIBS="-L$(brew --prefix libpng)/lib"
export LDFLAGS="-L $(brew --prefix molten-vk)/lib"
mkdir -p ${{ env.BUILDROOT }}/wine64
pushd ${{ env.BUILDROOT }}/wine64
${{ env.WINE_CONFIGURE }} \
--enable-win64 \
--disable-tests \
--without-alsa \
--without-capi \
--without-dbus \
--without-inotify \
--without-oss \
--without-pulse \
--without-udev \
--without-v4l2 \
--without-gsm \
--with-png \
--with-sdl \
--with-vulkan \
--without-x
popd
- name: Build wine64
run: |
pushd ${{ env.BUILDROOT }}/wine64
make -j$(sysctl -n hw.ncpu 2>/dev/null)
popd
############ Build 32bit Version (WoW64) ##############
- name: Configure wine32on64
env:
CC: clang
CXX: clang++
# see https://github.com/Gcenx/macOS_Wine_builds/issues/17#issuecomment-750346843
CROSSCFLAGS: "-g -O2 -fcommon"
# Xcode12 by default enables '-Werror,-Wimplicit-function-declaration' (49917738)
# this causes wine(64) builds to fail so needs to be disabled.
# https://developer.apple.com/documentation/xcode-release-notes/xcode-12-release-notes
CFLAGS: "-g -O2 -Wno-implicit-function-declaration -Wno-deprecated-declarations -Wno-format"
LDFLAGS: "-Wl,-headerpad_max_install_names"
run: |
set -x
export SDL2_CFLAGS="-I$(brew --prefix sdl2)/"$([[ ${{ env.CROSS_OVER_VERSION }} == 21.* ]] && echo "include/SDL2" || echo "include")
export PNG_CFLAGS="-I$(brew --prefix libpng)/include"
export PNG_LIBS="-L$(brew --prefix libpng)/lib"
if [[ ${{ env.CROSS_OVER_VERSION }} == 19.* || ${{ env.CROSS_OVER_VERSION }} == 20.* ]]; then
export DISABLE_VULKAN="--without-vkd3d --without-vulkan --disable-vulkan_1 --disable-winevulkan"
else
export DISABLE_VULKAN=""
fi
mkdir -p ${{ env.BUILDROOT }}/wine32on64
pushd ${{ env.BUILDROOT }}/wine32on64
${{ env.WINE_CONFIGURE }} \
--enable-win32on64 \
--with-wine64=${{ env.BUILDROOT }}/wine64 \
--disable-tests \
--without-alsa \
--without-capi \
--without-dbus \
--without-inotify \
--without-oss \
--without-pulse \
--without-udev \
--without-v4l2 \
--disable-winedbg \
--without-cms \
--without-gstreamer \
--without-gsm \
--without-gphoto \
--without-sane \
--with-png \
--with-sdl \
--without-krb5 \
${DISABLE_VULKAN} \
--without-x
popd
- name: Build wine32on64
run: |
pushd ${{ env.BUILDROOT }}/wine32on64
make -j$(sysctl -n hw.ncpu 2>/dev/null)
popd
############ Install wine ##############
- name: Install wine32on64
run: |
set -x
pushd ${{ env.BUILDROOT }}/wine32on64
make install-lib DESTDIR="${{ env.INSTALLROOT }}/${{ env.WINE_INSTALLATION }}"
popd
- name: Install wine64
run: |
set -x
pushd ${{ env.BUILDROOT }}/wine64
make install-lib DESTDIR="${{ env.INSTALLROOT }}/${{ env.WINE_INSTALLATION }}"
popd
############ Bundle and Upload Deliverable ##############
- name: Tar Wine
run: |
set -x
pushd ${{ env.INSTALLROOT }}
tar -czvf ${{ env.WINE_INSTALLATION }}.tar.gz ${{ env.WINE_INSTALLATION }}
popd
- name: Upload Wine
uses: actions/upload-artifact@v2
with:
name: ${{ env.WINE_INSTALLATION }}
path: ${{ env.INSTALLROOT }}/${{ env.WINE_INSTALLATION }}.tar.gz