Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add cmake check workflow #1725

Merged
merged 1 commit into from
Feb 8, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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

Loading