diff options
author | nkozlovskiy <nmk@ydb.tech> | 2023-08-28 15:21:31 +0300 |
---|---|---|
committer | nkozlovskiy <nmk@ydb.tech> | 2023-08-28 16:05:03 +0300 |
commit | 190eefa755c40a2db39b411ce1a02ba819068d2d (patch) | |
tree | 78c2fa5d05785d66f0fb1447de7ca8eb400fa4fa /.github/workflows/build_and_test_provisioned.yml | |
parent | 3802f0583254ebcd5c9c20b725c990ff9f9da0aa (diff) | |
download | ydb-190eefa755c40a2db39b411ce1a02ba819068d2d.tar.gz |
ci: change platform labels
Diffstat (limited to '.github/workflows/build_and_test_provisioned.yml')
-rw-r--r-- | .github/workflows/build_and_test_provisioned.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/build_and_test_provisioned.yml b/.github/workflows/build_and_test_provisioned.yml index 897099723f..922087cdfe 100644 --- a/.github/workflows/build_and_test_provisioned.yml +++ b/.github/workflows/build_and_test_provisioned.yml @@ -58,14 +58,14 @@ jobs: - name: Build uses: ./.github/actions/build if: inputs.run_build - with: + with: sanitizer: ${{ inputs.sanitizer }} ccache_remote_path: ${{ vars.REMOTE_CACHE_URL && format('http://{0}{1}', secrets.REMOTE_CACHE_AUTH, vars.REMOTE_CACHE_URL) || ''}} extra_compile_flags: ${{ inputs.extra_compile_flags }} - name: Run tests uses: ./.github/actions/test - with: - log_suffix: ${{format('{0}{1}', inputs.runner_label, inputs.sanitizer)}} + with: + log_suffix: ${{ inputs.sanitizer != '' && format('{0}-{1}', inputs.runner_label, inputs.sanitizer) || inputs.runner_label }} test_label_regexp: ${{ inputs.test_label_regexp }} aws_key_id: ${{secrets.AWS_KEY_ID}} aws_key_value: ${{secrets.AWS_KEY_VALUE}} @@ -76,4 +76,4 @@ jobs: testman_project_id: ${{vars.TESTMO_PROJECT_ID}} run_unit_tests: ${{inputs.run_unit_tests}} run_functional_tests: ${{inputs.run_functional_tests}} - + |