From 9e78d6f54ec8d8b5c754ae35e7a3064b376788bd Mon Sep 17 00:00:00 2001 From: Maxim Yurchuk Date: Thu, 5 Dec 2024 21:36:49 +0300 Subject: [PATCH] [stable-24-3] remove clang --- .github/workflows/pr_check.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pr_check.yml b/.github/workflows/pr_check.yml index b3d8eab8a493..d8980d8e0e55 100644 --- a/.github/workflows/pr_check.yml +++ b/.github/workflows/pr_check.yml @@ -203,7 +203,7 @@ jobs: strategy: fail-fast: false matrix: - build_preset: ["relwithdebinfo", "release-asan", "release-clang14"] + build_preset: ["relwithdebinfo", "release-asan"] runs-on: [ self-hosted, auto-provisioned, "${{ format('build-preset-{0}', matrix.build_preset) }}" ] name: Build and test ${{ matrix.build_preset }} steps: @@ -247,7 +247,7 @@ jobs: https://api.github.com/repos/${{github.repository}}/commits/${{github.event.pull_request.head.sha}}/status | \ jq -cr '.statuses | .[] | select(.state=="success") | select(.context | startswith("build_")) | .context' | \ wc -l ) - if [[ $successbuilds == "3" ]];then + if [[ $successbuilds == "2" ]];then integrated_status="success" else integrated_status="failure"