Skip to content

Commit

Permalink
Fix quotes for arch
Browse files Browse the repository at this point in the history
  • Loading branch information
alan-forbes-cp committed Dec 16, 2024
1 parent 0833367 commit f5c4d46
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/actions/do_build_opencl_cts/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ runs:
path: OpenCL-CTS

- name: build opencl cts x86_64
if: steps.calc_vars.outputs.arch == x86_64
if: steps.calc_vars.outputs.arch == 'x86_64'
shell: bash
env:
# TODO: host-x86_64-linux 'toolchain' - expand for other targets
Expand Down Expand Up @@ -65,7 +65,7 @@ runs:
--output-dir $GITHUB_WORKSPACE/test_conformance/spirv_bin
- name: build opencl cts aarch64
if: steps.calc_vars.outputs.arch == aarch64
if: steps.calc_vars.outputs.arch == 'aarch64'
shell: bash
env:
# TODO: host-x86_64-linux 'toolchain' - expand for other targets
Expand Down
4 changes: 2 additions & 2 deletions .github/actions/run_opencl_cts/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ runs:
path: install_ock

- name: Run opencl cts x86_64
if: steps.calc_vars.outputs.arch == x86_64
if: steps.calc_vars.outputs.arch == 'x86_64'
shell: bash
env:
CTS_CSV_FILE: opencl_conformance_tests_${{inputs.test_type}}.csv
Expand All @@ -48,7 +48,7 @@ runs:
-i "$GITHUB_WORKSPACE/source/cl/scripts/$CTS_FILTER"
- name: Run opencl cts aarch64
if: steps.calc_vars.outputs.arch == aarch64
if: steps.calc_vars.outputs.arch == 'aarch64'
shell: bash
env:
CTS_CSV_FILE: opencl_conformance_tests_${{inputs.test_type}}.csv
Expand Down

0 comments on commit f5c4d46

Please sign in to comment.