aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/postcommit_cmakebuild.yml
blob: 60c9cb72b97608e34a67a8ed72404370ee7de110 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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