Skip to content

Commit e67eb45

Browse files
Add cmake check workflow (#1725)
1 parent 6f8bdcb commit e67eb45

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Postcommit_cmake
2+
on:
3+
push:
4+
branches:
5+
- 'cmakebuild'
6+
paths-ignore:
7+
- 'ydb/docs/**'
8+
- '.github/**'
9+
concurrency:
10+
group: ${{ github.workflow }}
11+
cancel-in-progress: true
12+
jobs:
13+
build_and_test:
14+
if: ${{vars.CHECKS_SWITCH != '' && fromJSON(vars.CHECKS_SWITCH).postcommit_cmake == true}}
15+
name: Build and test cmake
16+
uses: ./.github/workflows/build_and_test_provisioned.yml
17+
with:
18+
runner_label: auto-provisioned
19+
run_unit_tests: false
20+
run_functional_tests: false
21+
secrets: inherit
22+

0 commit comments

Comments
 (0)