From c01a326de45fb34558c123f0b66e5788a005dabc Mon Sep 17 00:00:00 2001 From: Bret Ambrose Date: Thu, 14 Mar 2024 10:05:06 -0700 Subject: [PATCH] Try runninng instrumented builds only on ubuntu 20 --- .github/workflows/ci.yml | 2 +- .github/workflows/codecov.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 91d10890..0be31bba 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -61,7 +61,7 @@ jobs: ./linux-container-ci.sh ${{ env.BUILDER_VERSION }} aws-crt-${{ env.LINUX_BASE_IMAGE }} build -p ${{ env.PACKAGE_NAME }} --compiler=${{ matrix.compiler }} --cmake-extra=-DASSERT_LOCK_HELD=ON clang-sanitizers: - runs-on: ubuntu-22.04 # latest + runs-on: ubuntu-20.04 # latest strategy: matrix: sanitizers: [",thread", ",address,undefined"] diff --git a/.github/workflows/codecov.yml b/.github/workflows/codecov.yml index 4dd5dfec..cc2f870b 100644 --- a/.github/workflows/codecov.yml +++ b/.github/workflows/codecov.yml @@ -14,7 +14,7 @@ env: jobs: codecov-linux: - runs-on: ubuntu-22.04 + runs-on: ubuntu-20.04 steps: - name: Checkout Sources uses: actions/checkout@v3