diff options
author | Kargatum <dowlandtop@yandex.com> | 2022-05-31 17:05:39 +0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-31 17:05:39 +0700 |
commit | 4fbec972a8fe55d73744205322298791ded0c204 (patch) | |
tree | 9b183311815b3a25c46ea11e99c73c548460a0fb /.github/workflows/windows_build.yml | |
parent | 40a5eef152addba3949016938519fa61d9776f82 (diff) |
refactor(Cmake): add support build selected applications and tools (#11836)
Diffstat (limited to '.github/workflows/windows_build.yml')
-rw-r--r-- | .github/workflows/windows_build.yml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/.github/workflows/windows_build.yml b/.github/workflows/windows_build.yml index 013ac8625b..44fb899307 100644 --- a/.github/workflows/windows_build.yml +++ b/.github/workflows/windows_build.yml @@ -15,16 +15,16 @@ jobs: strategy: fail-fast: false matrix: - os: [windows-2019] + os: [windows-latest] runs-on: ${{ matrix.os }} - name: ${{ matrix.os }}-MSVC16 + name: ${{ matrix.os }}-${{ matrix.compiler }} env: - BOOST_ROOT: C:\local\boost_1_74_0 + BOOST_ROOT: C:\local\boost_1_79_0 if: github.repository == 'azerothcore/azerothcore-wotlk' && (github.ref == 'refs/heads/master' || contains(github.event.pull_request.labels.*.name, 'run-build') || github.event.label.name == 'run-build') steps: - uses: actions/checkout@v2 - name: Configure OS - run: choco install --no-progress openssl boost-msvc-14.2 + run: choco install --no-progress openssl boost-msvc-14.3 - name: Build shell: bash run: | @@ -39,5 +39,5 @@ jobs: cp "/c/Program Files/OpenSSL-Win64/bin/libssl-1_1-x64.dll" "build/bin/Release/" - uses: actions/upload-artifact@v2 with: - name: windows-2019-MSVC16-release + name: windows-2022-MSVC17-release path: build/bin/Release |