From 6d779e2366438515262136833dcc2b2937065239 Mon Sep 17 00:00:00 2001 From: x-tools-author Date: Thu, 3 Oct 2024 00:04:34 +0800 Subject: [PATCH] chore: update the file --- .github/workflows/build-macos.yml | 2 +- .github/workflows/build-windows.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-macos.yml b/.github/workflows/build-macos.yml index 1081b10dd..62a79268b 100644 --- a/.github/workflows/build-macos.yml +++ b/.github/workflows/build-macos.yml @@ -1,4 +1,4 @@ -name: build-macos +name: build-macos # on: # schedule: # - cron: '0 0 * * *' diff --git a/.github/workflows/build-windows.yml b/.github/workflows/build-windows.yml index 18a1d132d..10b4e60c3 100644 --- a/.github/workflows/build-windows.yml +++ b/.github/workflows/build-windows.yml @@ -9,7 +9,7 @@ on: jobs: build: name: Build - runs-on: windows-2019 + runs-on: windows-2022 strategy: matrix: target: [desktop] @@ -31,6 +31,6 @@ jobs: run: | mkdir build cd build - call "C:\Program Files (x86)\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" x64 + call "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" x64 cmake -DCMAKE_PREFIX_PATH='${{ github.workspace }}/Qt/${{ matrix.version }}/${{ matrix.arch }}' -DCMAKE_BUILD_TYPE=Release -G "NMake Makefiles" ../ nmake