123456789101112131415161718192021222324 |
- name: Postcommit_relwithdebinfo
- on:
- push:
- branches:
- - 'main'
- - 'stable-*'
- paths-ignore:
- - 'ydb/docs/**'
- - '.github/**'
- - '*'
- jobs:
- build_and_test:
- if: ${{vars.CHECKS_SWITCH != '' && fromJSON(vars.CHECKS_SWITCH).postcommit_relwithdebinfo == true}}
- name: Build and test relwithdebinfo
- uses: ./.github/workflows/build_and_test_ya_provisioned.yml
- with:
- build_preset: "relwithdebinfo"
- build_target: "ydb/"
- test_size: "small,medium"
- test_type: "unittest,py3test,py2test,pytest"
- test_threads: 52
- runner_label: auto-provisioned
- put_build_results_to_cache: true
- secrets: inherit
|