Skip to content

Commit 3d9886b

Browse files
committed
matrix
1 parent 797d8ed commit 3d9886b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/causal_lm_cpp.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -692,15 +692,15 @@ jobs:
692692
- uses: actions/setup-python@v4
693693
with: {python-version: 3.12}
694694
- run: mkdir ./ov/
695-
- if: ${{ 'ubuntu-20.04-16-core' == runner.os }}
695+
- if: ${{ 'ubuntu-20.04-16-core' == matrix.runs-on }}
696696
run: >
697697
curl ${{ env.l_ov_link }} | tar --directory ./ov/ --strip-components 1 -xz
698698
&& sudo ./ov/install_dependencies/install_openvino_dependencies.sh
699-
- if: ${{ 'macos-12' == runner.os }}
699+
- if: ${{ 'macos-12' == matrix.runs-on }}
700700
run: >
701701
curl ${{ env.m_ov_link }} | tar --directory ./ov/ --strip-components 1 -xz
702702
&& brew install coreutils scons
703-
- run: OpenVINO_DIR=ov/runtime/cmake cmake -DCMAKE_BUILD_TYPE=Release -B ./build/ ./
703+
- run: OpenVINO_DIR=./ov/runtime/cmake/ cmake -DCMAKE_BUILD_TYPE=Release -B ./build/ ./
704704
- run: cmake --build ./build/ --config Release --target visual_language_chat -j
705705
- name: Download and convert a model and an image
706706
run: |

0 commit comments

Comments
 (0)