Skip to content

Commit 53f3154

Browse files
committed
16
1 parent 6ac98c5 commit 53f3154

File tree

1 file changed

+4
-8
lines changed

1 file changed

+4
-8
lines changed

.github/workflows/causal_lm_cpp.yml

+4-8
Original file line numberDiff line numberDiff line change
@@ -685,29 +685,25 @@ jobs:
685685
strategy:
686686
fail-fast: false
687687
# 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]}
689689
runs-on: ${{ matrix.runs-on }}
690690
steps:
691691
- uses: actions/checkout@v4
692692
with: {submodules: recursive}
693693
- uses: actions/setup-python@v4
694694
with: {python-version: 3.12}
695695
- run: mkdir ./ov/
696-
- if: ${{ 'ubuntu-20.04-8-cores' == matrix.runs-on }}
696+
- if: ${{ 'ubuntu-20.04-16-cores' == matrix.runs-on }}
697697
run: >
698698
curl ${{ env.l_ov_link }} | tar --directory ./ov/ --strip-components 1 -xz
699699
&& sudo ./ov/install_dependencies/install_openvino_dependencies.sh
700700
- if: ${{ 'macos-13' == matrix.runs-on }}
701701
run: >
702702
curl ${{ env.m_ov_link }} | tar --directory ./ov/ --strip-components 1 -xz
703703
&& 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/
709705
- 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
711707
- name: Download and convert a model
712708
run: |
713709
source ./ov/setupvars.sh

0 commit comments

Comments
 (0)