Skip to content

Commit ebc6cf1

Browse files
authored
Update Windows action build settings. (#1006)
Windows 2022 -> 2025 PSQL 14 -> 17 QT 6.8.2 -> 6.8.3 OpenSLL 1.1.1 -> 3.1.4
1 parent e04f8c8 commit ebc6cf1

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

.github/workflows/installer.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
jobs:
1010
windows:
1111
name: Qt 6.8 / Windows
12-
runs-on: windows-2022
12+
runs-on: windows-2025
1313
steps:
1414
- name: Clone the repository
1515
uses: actions/checkout@v4
@@ -54,14 +54,15 @@ jobs:
5454
- name: Get libraries
5555
# if: steps.cache-libs.outputs.cache-hit != 'true'
5656
run: |
57-
choco install openssl.light --params "/InstallDir:C:\openssl" --version 1.1.1 -y
58-
choco install postgresql14 --version 14.5.1 -y
57+
choco install openssl.light --params "/InstallDir:C:\openssl" --version=3.1.4 -y
58+
choco install postgresql17 -y
59+
choco install innosetup -y
5960
shell: cmd
6061

6162
- name: Setup CMake
6263
uses: ./.github/actions/cmake
6364
with:
64-
qt_version: 6.8.2
65+
qt_version: 6.8.3
6566
qt_arch: win64_mingw
6667
use_qt6: ON
6768
modules: qtserialport qtmultimedia
@@ -86,10 +87,10 @@ jobs:
8687

8788
- name: Copy PostgreSQL runtime libraries
8889
run: |
89-
cd "C:/Program Files/PostgreSQL/14/bin"
90+
cd "C:/Program Files/PostgreSQL/17/bin"
9091
cp libiconv-2.dll libintl-9.dll liblz4.dll zlib1.dll libpq.dll '${{ github.workspace }}/install/bin/'
9192
cd "C:\openssl"
92-
cp libssl-1_1-x64.dll libcrypto-1_1-x64.dll '${{ github.workspace }}/install/bin/'
93+
cp libssl-3-x64.dll libcrypto-3-x64.dll '${{ github.workspace }}/install/bin/'
9394
shell: bash
9495

9596
- name: Get app version

0 commit comments

Comments
 (0)