Skip to content

Commit

Permalink
set clc for both oses
Browse files Browse the repository at this point in the history
  • Loading branch information
alan-forbes-cp committed Oct 16, 2024
1 parent 78d08c4 commit 096ba56
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/actions/do_build_ock/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ runs:
- name: set external_clc ubuntu
id: set_ubuntu
if: startsWith(runner.os, 'Ubuntu')
if: startsWith(runner.os, 'Linux')
shell: ${{ inputs.shell_to_use }}
run: |
GITHUB_WORKSPACELINUX = ${{ inputs.external_clc }}
Expand Down Expand Up @@ -164,7 +164,7 @@ runs:
-DCMAKE_INSTALL_PREFIX=${{ inputs.install_dir }}
-DCA_USE_LINKER=${{ inputs.use_linker }}
-DCA_RUNTIME_COMPILER_ENABLED=${{ inputs.runtime_compiler_enabled }}
-DCA_EXTERNAL_CLC=${{ inputs.external_clc }}
-DCA_EXTERNAL_CLC=${{ startsWith(runner.os, 'Linux') && steps.set_ubuntu.outputs.ubuntuclc || steps.set_windows.outputs.windowsclc }}
-DCA_CL_DISABLE_UNITCL_VECZ_CHECKS=${{ inputs.disable_unitcl_vecz_checks }}
-DCA_GTEST_LAUNCHER="${{ inputs.gtest_launcher }}"
-DCA_BUILD_32_BITS=${{ inputs.build_32_bit }}
Expand Down

0 comments on commit 096ba56

Please sign in to comment.