diff options
author | nkozlovskiy <nmk@ydb.tech> | 2023-11-13 17:25:00 +0300 |
---|---|---|
committer | nkozlovskiy <nmk@ydb.tech> | 2023-11-13 17:50:30 +0300 |
commit | 5df3d5d2ca0e4f3f8c2d1c760ca68cf3a5a06b3f (patch) | |
tree | e09809539b766f3199a410641dd7fff85556f800 /.github/workflows/build_and_test_ya_provisioned.yml | |
parent | 1cf16c24115be68be4115e95138a7dafb36da0fe (diff) | |
download | ydb-5df3d5d2ca0e4f3f8c2d1c760ca68cf3a5a06b3f.tar.gz |
ci: run tests with --cache-tests
Diffstat (limited to '.github/workflows/build_and_test_ya_provisioned.yml')
-rw-r--r-- | .github/workflows/build_and_test_ya_provisioned.yml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/.github/workflows/build_and_test_ya_provisioned.yml b/.github/workflows/build_and_test_ya_provisioned.yml index 4223d441c4..7285078de0 100644 --- a/.github/workflows/build_and_test_ya_provisioned.yml +++ b/.github/workflows/build_and_test_ya_provisioned.yml @@ -51,6 +51,10 @@ on: type: string default: "ya-make" description: "runner label" + cache_tests: + type: boolean + default: false + description: "Use cache for tests" workflow_call: inputs: build_target: @@ -82,6 +86,10 @@ on: runner_label: type: string default: "ya-make" + cache_tests: + type: boolean + default: false + description: "Use cache for tests" jobs: main: @@ -97,4 +105,5 @@ jobs: test_type: ${{ inputs.test_type }} link_threads: ${{ inputs.link_threads }} test_threads: ${{ inputs.test_threads }} + cache_tests: ${{ inputs.cache_tests }} secrets: inherit |