123456789101112131415161718192021 |
- name: Acceptance-run
- on:
- schedule:
- - cron: "0 0 * * *" # At 00:00 every day
- workflow_dispatch:
- inputs:
- test_label_regexp:
- required: false
- type: string
- jobs:
- ya_x86_64:
- name: Build/test x86_64 using YA
- uses: ./.github/workflows/build_and_test_ya_provisioned.yml
- secrets: inherit
- with:
- runner_label: auto-provisioned
- build_preset: relwithdebinfo
- build_target: ydb/tests/acceptance
- run_build: true
- run_tests: true
|