diff options
author | Maxim Yurchuk <maxim-yurchuk@ydb.tech> | 2024-09-26 17:25:32 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-26 17:25:32 +0300 |
commit | 850de768a377cbe3daaaa6c59039df70231db221 (patch) | |
tree | 90784e80707a9a0a7493df495192603fb5090bc3 | |
parent | 958591737b042f636bc599a33df2c2764b1a6510 (diff) | |
download | ydb-850de768a377cbe3daaaa6c59039df70231db221.tar.gz |
Remove clang14 from PRs and other workflows (#9798)
-rw-r--r-- | .github/actions/test_ya/action.yml | 2 | ||||
-rw-r--r-- | .github/workflows/pr_check.yml | 5 |
2 files changed, 4 insertions, 3 deletions
diff --git a/.github/actions/test_ya/action.yml b/.github/actions/test_ya/action.yml index 0ea934db47..bdc28049b7 100644 --- a/.github/actions/test_ya/action.yml +++ b/.github/actions/test_ya/action.yml @@ -206,7 +206,7 @@ runs: release) params+=(--build "release") ;; - release-clang14) + release-clang14) # TODO: remove after removing from workflow params+=(--build "release") params+=(--target-platform="CLANG14-LINUX-X86_64") params+=(-DLLD_VERSION=16) diff --git a/.github/workflows/pr_check.yml b/.github/workflows/pr_check.yml index 0ddd939326..592c8c6d5f 100644 --- a/.github/workflows/pr_check.yml +++ b/.github/workflows/pr_check.yml @@ -6,6 +6,7 @@ on: - 'stable-*' - 'stream-nb-*' - '*-stable-*' + - 'dev-*' types: - 'opened' - 'synchronize' @@ -205,7 +206,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: @@ -245,7 +246,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_") or startswith("test_relwithdebinfo")) ) | .context' | \ wc -l ) - if [[ $successbuilds == "4" ]];then + if [[ $successbuilds == "3" ]];then integrated_status="success" else integrated_status="failure" |