From e6abe6b19abdafd4a75a8cb5ba29d117f0d5e308 Mon Sep 17 00:00:00 2001 From: Carson Radtke Date: Mon, 14 Oct 2024 09:58:08 -0500 Subject: [PATCH] tone down the matrix size. for now --- .github/workflows/compilers.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/compilers.yml b/.github/workflows/compilers.yml index 0051b49..8dd8513 100644 --- a/.github/workflows/compilers.yml +++ b/.github/workflows/compilers.yml @@ -19,9 +19,9 @@ jobs: gcc: strategy: matrix: - cxx_version: [ 14, 17, 20 ] - build_type: [ 'Debug', 'Release' ] - gcc_version: [ 12, 13, 14 ] + cxx_version: [ 17 ] # 14, 17, 20 + build_type: [ 'Debug'] # 'Debug', 'Release' + gcc_version: [ 12 ] # 12, 13, 14 runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 @@ -47,9 +47,9 @@ jobs: clang: strategy: matrix: - cxx_version: [ 14, 17, 20 ] - build_type: [ 'Debug', 'Release' ] - clang_version: [ 16, 17, 18 ] + cxx_version: [ 17 ] # 14, 17, 20 + build_type: [ 'Debug' ] # 'Debug', 'Release' + clang_version: [ 16 ] # 16, 17, 18 runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 @@ -75,9 +75,9 @@ jobs: VS_MSVC: strategy: matrix: - generator: [ "Visual Studio 16 2019", "Visual Studio 17 2022" ] - cxx_version: [ 14, 17, 20 ] - build_type: [ 'Debug', 'Release' ] + cxx_version: [ 17 ] # 14, 17, 20 + generator: [ "Visual Studio 16 2019" ] # "Visual Studio 16 2019", "Visual Studio 17 2022" ] + build_type: [ 'Debug' ] # 'Debug', 'Release' runs-on: windows-latest steps: - uses: actions/checkout@v4