aboutsummaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorAlexSm <alex@ydb.tech>2024-02-08 14:52:41 +0100
committerGitHub <noreply@github.com>2024-02-08 14:52:41 +0100
commite67eb457b1992f63b20a13849576b1ad3db3494e (patch)
tree14a9f1602cdf8846c5061a8eec99215342a4550f /.github
parent6f8bdcbff1a548ab756573cc3d81d44e5fd1f10f (diff)
downloadydb-e67eb457b1992f63b20a13849576b1ad3db3494e.tar.gz
Add cmake check workflow (#1725)
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/postcommit_cmakebuild.yml22
1 files changed, 22 insertions, 0 deletions
diff --git a/.github/workflows/postcommit_cmakebuild.yml b/.github/workflows/postcommit_cmakebuild.yml
new file mode 100644
index 0000000000..60c9cb72b9
--- /dev/null
+++ b/.github/workflows/postcommit_cmakebuild.yml
@@ -0,0 +1,22 @@
+name: Postcommit_cmake
+on:
+ push:
+ branches:
+ - 'cmakebuild'
+ paths-ignore:
+ - 'ydb/docs/**'
+ - '.github/**'
+concurrency:
+ group: ${{ github.workflow }}
+ cancel-in-progress: true
+jobs:
+ build_and_test:
+ if: ${{vars.CHECKS_SWITCH != '' && fromJSON(vars.CHECKS_SWITCH).postcommit_cmake == true}}
+ name: Build and test cmake
+ uses: ./.github/workflows/build_and_test_provisioned.yml
+ with:
+ runner_label: auto-provisioned
+ run_unit_tests: false
+ run_functional_tests: false
+ secrets: inherit
+