blob: b211b7e7a059878352c686817a05cf1b5ffab1ce (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
name: Prewarm-debug
on:
schedule:
- cron: "15 */6 * * *" # At minute 15 past every 6th hour
workflow_dispatch:
jobs:
build_ya_make:
name: Build/test x86_64 using YA
uses: ./.github/workflows/build_and_test_ya_provisioned.yml
secrets: inherit
with:
build_target: ydb/
build_preset: debug
run_build: true
run_tests: false
|