@@ -210,7 +210,7 @@ jobs:
210210
211211 for index in $(echo '${{ github.event.inputs.index }}' | jq -r .[]); do
212212 TARGET_INDEX_RAW=$(echo $index|cut -d '-' -f1)
213- TARGET_INDEX_UNDERLINE=$(echo $TARGET_INDEX_RAW|tr '.' '_')
213+ TARGET_INDEX_UNDERLINE=$(echo $TARGET_INDEX_RAW|tr '.' '_')
214214 export OPP_FORCE_OPERATORS_$TARGET_INDEX_UNDERLINE="${{ github.event.inputs.list_of_operators }}"
215215 echo "opp_uncomplete_operators_$TARGET_INDEX_UNDERLINE=${{ github.event.inputs.list_of_operators }}" >> $GITHUB_OUTPUT
216216 done
@@ -229,16 +229,16 @@ jobs:
229229 OPP_OP_INFO_PARALLEL : 1
230230 OPP_OP_INFO_PARALLEL_BATCH : 20
231231
232+ THIS_OPERATOR : ${{ needs.pr-check.outputs.opp_name }}
232233 OPP_AUTO_LABEL : 1
233234 ANSIBLE_FORCE_COLOR : 1
234235 ANSIBLE_DISPLAY_SKIPPED_HOSTS : 0
235236 ANSIBLE_STDOUT_CALLBACK : " yaml"
236- TMPDIR : " /mnt/tmp"
237237 run : |
238- sudo mkdir -p "${TMPDIR}"
239- sudo chmod 1777 "${TMPDIR}"
238+
240239 OPP_FORCE_OPERATORS=${OPP_FORCE_OPERATORS// /,}
241- echo $OPP_FORCE_OPERATORS
240+
241+ echo "Syncing: ${OPP_FORCE_OPERATORS}"
242242 [ "$OPP_AUTO_LABEL" = '1' ] && ANSIBLE_ARGS="-e automatic_cluster_version_label=true" || ANSIBLE_ARGS="-e automatic_cluster_version_label=false"
243243 [ "$OPP_OP_INFO_PARALLEL" = '1' ] && ANSIBLE_ARGS="$ANSIBLE_ARGS -e op_info_parallel=true -e op_info_parallel_batch=$OPP_OP_INFO_PARALLEL_BATCH" || ANSIBLE_ARGS="$ANSIBLE_ARGS -e op_info_parallel=false"
244244 echo $ANSIBLE_ARGS
@@ -347,7 +347,7 @@ jobs:
347347
348348 for index in $(echo '${{ github.event.inputs.index }}' | jq -r .[]); do
349349 TARGET_INDEX_RAW=$(echo $index|cut -d '-' -f1)
350- TARGET_INDEX_UNDERLINE=$(echo $TARGET_INDEX_RAW|tr '.' '_')
350+ TARGET_INDEX_UNDERLINE=$(echo $TARGET_INDEX_RAW|tr '.' '_')
351351 export OPP_FORCE_OPERATORS_$TARGET_INDEX_UNDERLINE="${{ github.event.inputs.list_of_operators }}"
352352 done
353353
0 commit comments