From e3e780490d46c9ef8d11b23408f8941dd52ebed0 Mon Sep 17 00:00:00 2001 From: Brian Szmyd Date: Tue, 27 Aug 2024 15:50:48 -0700 Subject: [PATCH] Remove unused flavours. --- .github/workflows/merge_conan_build.yml | 6 +----- .github/workflows/pr_conan_build.yml | 6 +----- 2 files changed, 2 insertions(+), 10 deletions(-) diff --git a/.github/workflows/merge_conan_build.yml b/.github/workflows/merge_conan_build.yml index 884809b7..b4fbf42e 100644 --- a/.github/workflows/merge_conan_build.yml +++ b/.github/workflows/merge_conan_build.yml @@ -12,18 +12,14 @@ jobs: strategy: fail-fast: false matrix: - platform: ["ubuntu-22.04", "ubuntu-20.04"] + platform: ["ubuntu-22.04"] build-type: ["Debug", "Release"] malloc-impl: ["libc", "tcmalloc"] prerelease: ["True", "False"] exclude: - - build-type: Debug - platform: ubuntu-20.04 - malloc-impl: libc build-type: Release platform: ubuntu-22.04 - - prerelease: "True" - platform: ubuntu-20.04 uses: ./.github/workflows/build_dependencies.yml with: platform: ${{ matrix.platform }} diff --git a/.github/workflows/pr_conan_build.yml b/.github/workflows/pr_conan_build.yml index 7841bc5b..a37c1112 100644 --- a/.github/workflows/pr_conan_build.yml +++ b/.github/workflows/pr_conan_build.yml @@ -11,19 +11,15 @@ jobs: strategy: fail-fast: false matrix: - platform: ["ubuntu-22.04", "ubuntu-20.04"] + platform: ["ubuntu-22.04"] build-type: ["Debug", "Release"] malloc-impl: ["libc", "tcmalloc"] prerelease: ["True", "False"] exclude: - - build-type: Debug - platform: ubuntu-20.04 - build-type: Debug platform: tcmalloc - malloc-impl: libc build-type: Release - - prerelease: "True" - platform: ubuntu-20.04 uses: ./.github/workflows/build_dependencies.yml with: platform: ${{ matrix.platform }}