acceptance_run.yml 495 B

123456789101112131415161718192021
  1. name: Acceptance-run
  2. on:
  3. schedule:
  4. - cron: "0 0 * * *" # At 00:00 every day
  5. workflow_dispatch:
  6. inputs:
  7. test_label_regexp:
  8. required: false
  9. type: string
  10. jobs:
  11. ya_x86_64:
  12. name: Build/test x86_64 using YA
  13. uses: ./.github/workflows/build_and_test_ya_provisioned.yml
  14. secrets: inherit
  15. with:
  16. runner_label: auto-provisioned
  17. build_preset: relwithdebinfo
  18. build_target: ydb/tests/acceptance
  19. run_build: true
  20. run_tests: true