File tree 1 file changed +3
-3
lines changed
.github/actions/build_and_test_ya
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 95
95
uses : ./.github/actions/graph_compare
96
96
97
97
- name : Change target in case of incremental (tests)
98
- id : test_run_choice
98
+ id : target_choice
99
99
shell : bash
100
100
run : |
101
101
if [ "${{ inputs.increment }}" == "true" ]; then
@@ -109,7 +109,7 @@ runs:
109
109
id : build
110
110
if : ${{ inputs.run_build == 'true' }}
111
111
with :
112
- build_target : ${{ inputs.build_target }}
112
+ build_target : ${{ steps.target_choice.outputs.target }}
113
113
build_preset : ${{ inputs.build_preset }}
114
114
bazel_remote_uri : ${{ fromJSON( inputs.vars ).REMOTE_CACHE_URL || '' }}
115
115
bazel_remote_username : ${{ fromJSON( inputs.secs ).REMOTE_CACHE_USERNAME || '' }}
@@ -122,7 +122,7 @@ runs:
122
122
uses : ./.github/actions/test_ya
123
123
if : ${{ inputs.run_tests == 'true' && (steps.build.outputs.success == 'true' || inputs.run_tests_if_build_fails == 'true') }}
124
124
with :
125
- build_target : ${{ steps.test_run_choice .outputs.target }}
125
+ build_target : ${{ steps.target_choice .outputs.target }}
126
126
build_preset : ${{ inputs.build_preset }}
127
127
test_size : ${{ inputs.test_size }}
128
128
test_type : ${{ inputs.test_type }}
You can’t perform that action at this time.
0 commit comments