diff --git a/.github/workflows/pipeline.yml b/.github/workflows/pipeline.yml index f1f247113..a0a4fd1b3 100644 --- a/.github/workflows/pipeline.yml +++ b/.github/workflows/pipeline.yml @@ -18,8 +18,8 @@ jobs: - { os: "ubuntu-latest", compiler: "clang++-16", generator: "Unix Makefiles", package: "clang-16" } - { os: "ubuntu-latest", compiler: "g++-12", generator: "Unix Makefiles", package: "g++-12" } - { os: "ubuntu-latest", compiler: "g++-13", generator: "Unix Makefiles", package: "g++-13" } - - { os: "windows-latest", compiler: "cl", generator: "Visual Studio 17 2022", config: "Debug" } - - { os: "windows-latest", compiler: "cl", generator: "Visual Studio 17 2022", config: "Release" } + - { os: "windows-latest", compiler: "cl", generator: "Ninja", config: "Debug" } + - { os: "windows-latest", compiler: "cl", generator: "Ninja", config: "Release" } name: "${{ matrix.os }} / ${{ matrix.compiler }} / ${{ matrix.generator }} / ${{ matrix.config }}" runs-on: "${{ matrix.os }}" steps: @@ -27,6 +27,9 @@ jobs: uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0 - name: "Tool: Microsoft Windows" uses: ilammy/msvc-dev-cmd@cec98b9d092141f74527d0afa6feb2af698cfe89 # v1.12.1 + with: + vsversion: 2022 + toolset: 17.XX - name: "Tool: Ubuntu" if: ${{ matrix.package == 'g++-12' || matrix.package == 'g++-13' ||