File tree 1 file changed +3
-4
lines changed
1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -684,21 +684,20 @@ jobs:
684
684
visual_language_sample :
685
685
strategy :
686
686
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]}
689
688
runs-on : ${{ matrix.runs-on }}
690
689
steps :
691
690
- uses : actions/checkout@v4
692
691
with : {submodules: recursive}
693
692
- uses : actions/setup-python@v4
694
693
with : {python-version: 3.12}
695
694
- run : mkdir ./ov/
696
- - if : ubuntu-20.04-16-core == ${{ matrix.runs-on }}
695
+ - if : ${{ ubuntu-20.04-16-core == matrix.runs-on }}
697
696
run : >
698
697
echo ${{ matrix.runs-on }} &&
699
698
curl ${{ env.l_ov_link }} | tar --directory ./ov/ --strip-components 1 -xz
700
699
&& sudo ./ov/install_dependencies/install_openvino_dependencies.sh
701
- - if : macos-12 == ${{ matrix.runs-on }}
700
+ - if : ${{ macos-12 == matrix.runs-on }}
702
701
run : >
703
702
curl ${{ env.m_ov_link }} | tar --directory ./ov/ --strip-components 1 -xz
704
703
&& brew install coreutils scons
You can’t perform that action at this time.
0 commit comments