diff options
author | AlexSm <alex@ydb.tech> | 2023-12-12 18:22:42 +0300 |
---|---|---|
committer | alexv-smirnov <alex@ydb.tech> | 2023-12-12 19:28:57 +0300 |
commit | a3d7f0d2be0a2f1cf394428ffb4e08ea0388520f (patch) | |
tree | 7952329dcae87c35e6d99a6ce9e183fa6653bc84 /.github/workflows/postcommit.yml | |
parent | 6a41a8c80b2a542fe4c4ad0d637c8f3343705a2c (diff) | |
download | ydb-a3d7f0d2be0a2f1cf394428ffb4e08ea0388520f.tar.gz |
Create postcommit.yml
Create postcommit.yml
Pull Request resolved: https://github.com/ydb-platform/ydb/pull/499
Diffstat (limited to '.github/workflows/postcommit.yml')
-rw-r--r-- | .github/workflows/postcommit.yml | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/.github/workflows/postcommit.yml b/.github/workflows/postcommit.yml new file mode 100644 index 0000000000..144f4e3b65 --- /dev/null +++ b/.github/workflows/postcommit.yml @@ -0,0 +1,27 @@ +name: Postcommit check +on: + push: + branches: + - 'main' + - 'stable-*' + paths-ignore: + - 'ydb/docs/**' + - '.github/**' + - '*' +jobs: + build_and_test: + strategy: + fail-fast: false + matrix: + build_preset: ["relwithdebinfo", "release-asan"] + name: Build and test ${{ matrix.build_preset }} + uses: ./.github/workflows/build_and_test_ya_provisioned.yml + with: + build_preset: ${{ matrix.build_preset }} + 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 |