File tree 1 file changed +4
-8
lines changed
1 file changed +4
-8
lines changed Original file line number Diff line number Diff line change @@ -685,29 +685,25 @@ jobs:
685
685
strategy :
686
686
fail-fast : false
687
687
# Windows fails to compile Jinja2Cpp.
688
- matrix : {runs-on: [ubuntu-20.04-8 -cores, macos-13]}
688
+ matrix : {runs-on: [ubuntu-20.04-16 -cores, macos-13]}
689
689
runs-on : ${{ matrix.runs-on }}
690
690
steps :
691
691
- uses : actions/checkout@v4
692
692
with : {submodules: recursive}
693
693
- uses : actions/setup-python@v4
694
694
with : {python-version: 3.12}
695
695
- run : mkdir ./ov/
696
- - if : ${{ 'ubuntu-20.04-8 -cores' == matrix.runs-on }}
696
+ - if : ${{ 'ubuntu-20.04-16 -cores' == matrix.runs-on }}
697
697
run : >
698
698
curl ${{ env.l_ov_link }} | tar --directory ./ov/ --strip-components 1 -xz
699
699
&& sudo ./ov/install_dependencies/install_openvino_dependencies.sh
700
700
- if : ${{ 'macos-13' == matrix.runs-on }}
701
701
run : >
702
702
curl ${{ env.m_ov_link }} | tar --directory ./ov/ --strip-components 1 -xz
703
703
&& brew install coreutils scons
704
- - run : |
705
- source ./ov/setupvars.sh
706
- echo $LD_LIBRARY_PATH
707
- echo $TBB_DIR
708
- echo $PATH
704
+ - run : ls ${{ github.workspace }}/ov/runtime/3rdparty/tbb/lib/
709
705
- run : OpenVINO_DIR=./ov/runtime/cmake/ cmake -DCMAKE_BUILD_TYPE=Release -B ./build/ ./
710
- - run : source . /ov/setupvars.sh && cmake --build ./build/ --config Release --target visual_language_chat -j
706
+ - run : LD_LIBRARY_PATH=${{ github.workspace }} /ov/runtime/3rdparty/tbb/lib/:$LD_LIBRARY_PATH cmake --build ./build/ --config Release --target visual_language_chat -j
711
707
- name : Download and convert a model
712
708
run : |
713
709
source ./ov/setupvars.sh
You can’t perform that action at this time.
0 commit comments