nightly_run.yaml 501 B

1234567891011121314151617181920
  1. name: Nightly-run
  2. on:
  3. schedule:
  4. - cron: "0 1 * * *" # At 01:00 every day
  5. workflow_dispatch:
  6. jobs:
  7. ya_x86_64:
  8. name: Build/test x86_64 using YA
  9. uses: ./.github/workflows/build_and_test_ya_provisioned.yml
  10. secrets: inherit
  11. strategy:
  12. matrix: ${{ fromJSON(vars.NIGHTLY_YA_X64_MATRIX) }}
  13. fail-fast: false
  14. with:
  15. runner_label: auto-provisioned
  16. build_preset: ${{ matrix.build_preset }}
  17. build_target: ydb/
  18. run_build: true
  19. run_tests: true