From 53a6566a98b1ad92db181424f4983e79140b8311 Mon Sep 17 00:00:00 2001 From: Christian Mazakas Date: Thu, 21 Sep 2023 15:47:49 -0700 Subject: [PATCH] Split up GHA gcc-12 sanitizer jobs --- .github/workflows/ci.yml | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4f397169..0e0154d5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -57,10 +57,16 @@ jobs: - { compiler: gcc-9, cxxstd: '03,11,14,17', os: 'ubuntu-22.04', install: 'g++-9' } - { compiler: gcc-10, cxxstd: '03,11,14,17,20', os: 'ubuntu-22.04', install: 'g++-10' } - { compiler: gcc-11, cxxstd: '03,11,14,17,20', os: 'ubuntu-22.04', install: 'g++-11' } - - { name: "gcc-12 w/ sanitizers (03,11,14)", sanitize: yes, - compiler: gcc-12, cxxstd: '03,11,14', os: 'ubuntu-22.04', ccache_key: "san1" } - - { name: "gcc-12 w/ sanitizers (17,20,2b)", sanitize: yes, - compiler: gcc-12, cxxstd: '17,20,2b', os: 'ubuntu-22.04', ccache_key: "san2" } + - { name: "gcc-12 w/ sanitizers (03,11)", sanitize: yes, + compiler: gcc-12, cxxstd: '03,11', os: 'ubuntu-22.04', ccache_key: "san1" } + - { name: "gcc-12 w/ sanitizers (14)", sanitize: yes, + compiler: gcc-12, cxxstd: '14', os: 'ubuntu-22.04', ccache_key: "san1" } + - { name: "gcc-12 w/ sanitizers (17)", sanitize: yes, + compiler: gcc-12, cxxstd: '17', os: 'ubuntu-22.04', ccache_key: "san2" } + - { name: "gcc-12 w/ sanitizers (20)", sanitize: yes, + compiler: gcc-12, cxxstd: '20', os: 'ubuntu-22.04', ccache_key: "san2" } + - { name: "gcc-12 w/ sanitizers (2b)", sanitize: yes, + compiler: gcc-12, cxxstd: '2b', os: 'ubuntu-22.04', ccache_key: "san2" } - { name: Collect coverage, coverage: yes, compiler: gcc-12, cxxstd: '03,20', os: 'ubuntu-22.04', install: 'g++-12-multilib', address-model: '32,64', ccache_key: "cov" }