File tree Expand file tree Collapse file tree 3 files changed +18
-2
lines changed Expand file tree Collapse file tree 3 files changed +18
-2
lines changed Original file line number Diff line number Diff line change @@ -213,6 +213,19 @@ jobs:
213
213
- name : Get Release Notes
214
214
uses : ./.github/actions/get-release-notes
215
215
216
+ - name : Build x86 for client package in x64
217
+ id : build-x86
218
+ shell : cmd
219
+ if : ${{ matrix.platform == 'x64' }}
220
+ env :
221
+ PLATFORM : ${{ matrix.platform }}
222
+ run : |
223
+ echo arch_suffix=%PLATFORM%>> %GITHUB_OUTPUT%
224
+ mkdir builds\install_images
225
+ cd builds\docker\windows
226
+ call build.bat
227
+ call run.bat C:\fbscripts\build-x86.bat
228
+
216
229
- name : Build
217
230
id : build
218
231
shell : cmd
@@ -257,8 +270,8 @@ jobs:
257
270
Firebird-*-windows-${{ steps.build.outputs.arch_suffix }}*.exe
258
271
Firebird-*-windows-${{ steps.build.outputs.arch_suffix }}*.zip
259
272
uploadFiles : |
260
- builds/install_images/Firebird-*-windows-*.exe
261
- builds/install_images/Firebird-*-windows-*.zip
273
+ builds/install_images/Firebird-*-windows-${{ matrix.platform }}- *.exe
274
+ builds/install_images/Firebird-*-windows-${{ matrix.platform }}- *.zip
262
275
263
276
build-macos :
264
277
runs-on : macos-12
Original file line number Diff line number Diff line change @@ -41,11 +41,13 @@ RUN `
41
41
choco install --no-progress --yes git --version=2.33.1 && `
42
42
choco install --no-progress --yes 7zip.install --version=19.0 && `
43
43
choco install --no-progress --yes innosetup --version=6.1.2 && `
44
+ choco install --no-progress --yes wixtoolset --version=3.11.2 && `
44
45
`
45
46
refreshenv && `
46
47
setx PATH "%PATH%;C:\P rogram Files\G it\u sr\b in"
47
48
48
49
ENV SEVENZIP='C:\P rogram Files\7 -Zip'
49
50
ENV INNO6_SETUP_PATH='C:\P rogram Files (x86)\I nno Setup 6'
51
+ ENV WIX='C:\P rogram Files (x86)\W iX Toolset v3.11'
50
52
51
53
COPY scripts\* C:\f bscripts\
Original file line number Diff line number Diff line change @@ -12,3 +12,4 @@ call run_all.bat PDB
12
12
call run_tests.bat
13
13
14
14
copy C:\firebird-build\builds\install_images\* C:\firebird\builds\install_images
15
+ xcopy /h /e /i /q C:\firebird-build\output_Win32_release C:\firebird\output_Win32_release
You can’t perform that action at this time.
0 commit comments