We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6f8bdcb commit e67eb45Copy full SHA for e67eb45
.github/workflows/postcommit_cmakebuild.yml
@@ -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