Skip to content

Commit 850de76

Browse files
authored
Remove clang14 from PRs and other workflows (#9798)
1 parent 9585917 commit 850de76

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/actions/test_ya/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ runs:
206206
release)
207207
params+=(--build "release")
208208
;;
209-
release-clang14)
209+
release-clang14) # TODO: remove after removing from workflow
210210
params+=(--build "release")
211211
params+=(--target-platform="CLANG14-LINUX-X86_64")
212212
params+=(-DLLD_VERSION=16)

.github/workflows/pr_check.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ on:
66
- 'stable-*'
77
- 'stream-nb-*'
88
- '*-stable-*'
9+
- 'dev-*'
910
types:
1011
- 'opened'
1112
- 'synchronize'
@@ -205,7 +206,7 @@ jobs:
205206
strategy:
206207
fail-fast: false
207208
matrix:
208-
build_preset: ["relwithdebinfo", "release-asan", "release-clang14"]
209+
build_preset: ["relwithdebinfo", "release-asan"]
209210
runs-on: [ self-hosted, auto-provisioned, "${{ format('build-preset-{0}', matrix.build_preset) }}" ]
210211
name: Build and test ${{ matrix.build_preset }}
211212
steps:
@@ -245,7 +246,7 @@ jobs:
245246
https://api.github.com/repos/${{github.repository}}/commits/${{github.event.pull_request.head.sha}}/status | \
246247
jq -cr '.statuses | .[] | select(.state=="success") | select(.context | (startswith("build_") or startswith("test_relwithdebinfo")) ) | .context' | \
247248
wc -l )
248-
if [[ $successbuilds == "4" ]];then
249+
if [[ $successbuilds == "3" ]];then
249250
integrated_status="success"
250251
else
251252
integrated_status="failure"

0 commit comments

Comments
 (0)