Skip to content

Commit

Permalink
Add cmake check workflow (#1725)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexv-smirnov authored Feb 8, 2024
1 parent 6f8bdcb commit e67eb45
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/postcommit_cmakebuild.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit e67eb45

Please sign in to comment.