From cb108e433d4ed048b4176fdcc8cae530378f0870 Mon Sep 17 00:00:00 2001 From: Carson Radtke Date: Mon, 14 Oct 2024 13:48:40 -0500 Subject: [PATCH] upate visual studio test to run vs2019 --- .github/workflows/compilers.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/compilers.yml b/.github/workflows/compilers.yml index 350594e..156132e 100644 --- a/.github/workflows/compilers.yml +++ b/.github/workflows/compilers.yml @@ -72,10 +72,13 @@ jobs: strategy: matrix: cxx_version: [ 14, 17, 20 ] - generator: [ 'Visual Studio 16 2019', 'Visual Studio 17 2022' ] - build_type: [ 'Debug', 'Release' ] extra_args: [ '', '-T ClangCL' ] - runs-on: windows-latest + include: + - generator: 'Visual Studio 16 2019' + image: 'windows-2019' + - generator: 'Visual Studio 17 2022' + image: 'windows-2022' + runs-on: ${{ matrix.image }} steps: - uses: actions/checkout@v4