File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -156,7 +156,7 @@ jobs:
156
156
# https://github.com/actions/cache/blob/main/tips-and-workarounds.md#update-a-cache
157
157
key : ${{ github.job }}-${{ matrix.job-type }}-ccache-${{ github.run_id }}
158
158
159
- windows-native :
159
+ windows-native-dll :
160
160
name : ${{ matrix.job-name }}
161
161
runs-on : windows-2022
162
162
@@ -202,7 +202,6 @@ jobs:
202
202
- name : Using vcpkg with MSBuild
203
203
run : |
204
204
echo "set(VCPKG_BUILD_TYPE release)" >> "${VCPKG_INSTALLATION_ROOT}/triplets/x64-windows.cmake"
205
- echo "set(VCPKG_BUILD_TYPE release)" >> "${VCPKG_INSTALLATION_ROOT}/triplets/x64-windows-static.cmake"
206
205
# Workaround for libevent, which requires CMake 3.1 but is incompatible with CMake >= 4.0.
207
206
sed -i '1s/^/set(ENV{CMAKE_POLICY_VERSION_MINIMUM} 3.5)\n/' "${VCPKG_INSTALLATION_ROOT}/scripts/ports.cmake"
208
207
@@ -221,7 +220,7 @@ jobs:
221
220
222
221
- name : Generate build system
223
222
run : |
224
- cmake -B build --preset vs2022-static -DCMAKE_TOOLCHAIN_FILE="${VCPKG_INSTALLATION_ROOT}/scripts/buildsystems/vcpkg.cmake" ${{ matrix.generate-options }}
223
+ cmake -B build --preset vs2022 -DCMAKE_TOOLCHAIN_FILE="${VCPKG_INSTALLATION_ROOT}/scripts/buildsystems/vcpkg.cmake" ${{ matrix.generate-options }}
225
224
226
225
- name : Save vcpkg binary cache
227
226
uses : actions/cache/save@v4
@@ -238,6 +237,8 @@ jobs:
238
237
- name : Run test suite
239
238
if : matrix.job-type == 'standard'
240
239
working-directory : build
240
+ env :
241
+ QT_PLUGIN_PATH : ' ${{ github.workspace }}\build\vcpkg_installed\x64-windows\Qt6\plugins'
241
242
run : |
242
243
ctest --output-on-failure --stop-on-failure -j $NUMBER_OF_PROCESSORS -C Release
243
244
You can’t perform that action at this time.
0 commit comments