mirror of
https://github.com/Mahdi-zarei/nekoray.git
synced 2025-12-19 13:50:12 +08:00
workaround: Fix windows build
This commit is contained in:
parent
9194309d60
commit
48691073d6
10
.github/workflows/build-qv2ray-cmake.yml
vendored
10
.github/workflows/build-qv2ray-cmake.yml
vendored
@ -92,7 +92,6 @@ jobs:
|
||||
if: matrix.platform == 'windows-2022'
|
||||
uses: ilammy/msvc-dev-cmd@v1.13.0
|
||||
with:
|
||||
toolset: 14.2
|
||||
arch: ${{ matrix.arch }}
|
||||
- name: Download Artifacts
|
||||
uses: actions/download-artifact@v4.1.8
|
||||
@ -100,12 +99,21 @@ jobs:
|
||||
path: download-artifact
|
||||
# ========================================================================================================= Qt Install
|
||||
- name: Install Qt
|
||||
if: matrix.platform != 'windows-2022'
|
||||
uses: jurplel/install-qt-action@v4.0.0
|
||||
with:
|
||||
version: ${{ matrix.qt_version }}
|
||||
setup-python: true
|
||||
cache: true
|
||||
cache-key-prefix: QtCache-${{ matrix.platform }}-${{ matrix.arch }}
|
||||
- name: Install Qt Windows
|
||||
if: matrix.platform == 'windows-2022'
|
||||
uses: jurplel/install-qt-action@v4.0.0
|
||||
with:
|
||||
arch: win64_msvc2022_64
|
||||
version: ${{ matrix.qt_version }}
|
||||
cache: true
|
||||
cache-key-prefix: QtCache-${{ matrix.platform }}-${{ matrix.arch }}
|
||||
# ========================================================================================================= 编译与 Qt 无关的依赖
|
||||
- name: Install ninja-build tool
|
||||
uses: seanmiddleditch/gha-setup-ninja@v5
|
||||
|
||||
Loading…
Reference in New Issue
Block a user