|
@@ -199,3 +199,21 @@ jobs:
|
|
|
put_build_results_to_cache: true
|
|
|
commit_sha: ${{ needs.check-running-allowed.outputs.commit_sha }}
|
|
|
secrets: inherit
|
|
|
+ build:
|
|
|
+ needs:
|
|
|
+ - check-running-allowed
|
|
|
+ if: needs.check-running-allowed.outputs.result == 'true' && needs.check-running-allowed.outputs.commit_sha != ''
|
|
|
+ strategy:
|
|
|
+ fail-fast: false
|
|
|
+ matrix:
|
|
|
+ build_preset: ["release-cmake14"]
|
|
|
+ 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/"
|
|
|
+ run_tests: false
|
|
|
+ runner_label: auto-provisioned
|
|
|
+ put_build_results_to_cache: true
|
|
|
+ commit_sha: ${{ needs.check-running-allowed.outputs.commit_sha }}
|
|
|
+ secrets: inherit
|