Skip to content

Commit c473d2a

Browse files
committed
cmp
1 parent 5efc24b commit c473d2a

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

.github/workflows/causal_lm_cpp.yml

+3-4
Original file line numberDiff line numberDiff line change
@@ -684,21 +684,20 @@ jobs:
684684
visual_language_sample:
685685
strategy:
686686
fail-fast: false
687-
matrix:
688-
runs-on: [ubuntu-20.04-16-core, macos-12]
687+
matrix: {runs-on: [ubuntu-20.04-16-core, macos-12]}
689688
runs-on: ${{ matrix.runs-on }}
690689
steps:
691690
- uses: actions/checkout@v4
692691
with: {submodules: recursive}
693692
- uses: actions/setup-python@v4
694693
with: {python-version: 3.12}
695694
- run: mkdir ./ov/
696-
- if: ubuntu-20.04-16-core == ${{ matrix.runs-on }}
695+
- if: ${{ ubuntu-20.04-16-core == matrix.runs-on }}
697696
run: >
698697
echo ${{ matrix.runs-on }} &&
699698
curl ${{ env.l_ov_link }} | tar --directory ./ov/ --strip-components 1 -xz
700699
&& sudo ./ov/install_dependencies/install_openvino_dependencies.sh
701-
- if: macos-12 == ${{ matrix.runs-on }}
700+
- if: ${{ macos-12 == matrix.runs-on }}
702701
run: >
703702
curl ${{ env.m_ov_link }} | tar --directory ./ov/ --strip-components 1 -xz
704703
&& brew install coreutils scons

0 commit comments

Comments
 (0)