From bc37851725c4e894e1e17e49742e3b8274c4a8d4 Mon Sep 17 00:00:00 2001 From: Christian Mazakas Date: Tue, 6 Jun 2023 08:51:16 -0700 Subject: [PATCH] Remove usage of ccache from problematic gcc-12 sanitizer actions --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 96dfa72a..4f2d9c0e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -47,9 +47,9 @@ jobs: - { 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" } + compiler: gcc-12, cxxstd: '03,11,14', os: ubuntu-22.04 } - { name: "gcc-12 w/ sanitizers (17,20,2b)", sanitize: yes, - compiler: gcc-12, cxxstd: '17,20,2b', os: ubuntu-22.04, ccache_key: "san2" } + compiler: gcc-12, cxxstd: '17,20,2b', os: ubuntu-22.04 } - { 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" }