Skip to content

Commit a0056b7

Browse files
[CI] Fix CMake opts handling (#10544)
The bug has been introduced in #10538, this PR fixes it.
1 parent ae59e34 commit a0056b7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/linux_single_e2e.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ jobs:
218218
CMAKE_EXTRA_ARGS: ${{ inputs.extra_cmake_args }}
219219
run: |
220220
if [ -n "$CMAKE_EXTRA_ARGS" ]; then
221-
echo 'opts=$CMAKE_EXTRA_ARGS' >> $GITHUB_OUTPUT
221+
echo "opts=$CMAKE_EXTRA_ARGS" >> $GITHUB_OUTPUT
222222
else
223223
if [ "${{ contains(inputs.target_devices, 'ext_oneapi_hip') }}" == "true" ]; then
224224
echo 'opts=-DHIP_PLATFORM="AMD" -DAMD_ARCH="gfx1031"' >> $GITHUB_OUTPUT

0 commit comments

Comments
 (0)