diff options
author | Kargatum <dowlandtop@yandex.com> | 2022-06-09 18:23:38 +0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-09 08:23:38 -0300 |
commit | 94528cd44df22ff1471cbe85074e180c61579647 (patch) | |
tree | a5fbd0c8e0723413a2718ee074bb40e4d896cff9 /.github/workflows/windows_build.yml | |
parent | c0ab2ab08e001ffce3c688eaf54301608af109a8 (diff) |
feat(Tools/DbImport): implement separated app for importing DB (#11614)
Diffstat (limited to '.github/workflows/windows_build.yml')
-rw-r--r-- | .github/workflows/windows_build.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/windows_build.yml b/.github/workflows/windows_build.yml index 44fb899307..43792b7547 100644 --- a/.github/workflows/windows_build.yml +++ b/.github/workflows/windows_build.yml @@ -17,7 +17,7 @@ jobs: matrix: os: [windows-latest] runs-on: ${{ matrix.os }} - name: ${{ matrix.os }}-${{ matrix.compiler }} + name: ${{ matrix.os }} env: 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') @@ -29,7 +29,7 @@ jobs: shell: bash run: | mkdir -p build && cd build - cmake .. -DTOOLS=ON + cmake .. -DTOOLS_BUILD=all cmake --build . --config Release --parallel 4 - name: Copy dll files shell: bash |