Skip to content

Commit 1ff0889

Browse files
committed
8
1 parent 4c61b12 commit 1ff0889

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/causal_lm_cpp.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -685,24 +685,24 @@ jobs:
685685
strategy:
686686
fail-fast: false
687687
# Windows fails to compile Jinja2Cpp.
688-
matrix: {runs-on: [ubuntu-20.04-4-cores, macos-13]}
688+
matrix: {runs-on: [ubuntu-20.04-8-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-4-cores' == matrix.runs-on }}
696+
- if: ${{ 'ubuntu-20.04-8-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: OpenVINO_DIR=./ov/runtime/cmake/ cmake -DCMAKE_BUILD_TYPE=Release -B ./build/ ./
705-
- run: source ./ov/setupvars.sh && cmake --build ./build/ --config Release --target visual_language_chat -j 10
704+
- run: OpenVINO_DIR=./ov/runtime/cmake/ TBB_DIR=./ov/runtime/3rdparty/tbb/lib/cmake/TBB/ cmake -DCMAKE_BUILD_TYPE=Release -B ./build/ ./
705+
- run: cmake --build ./build/ --config Release --target visual_language_chat -j
706706
- name: Download and convert a model and an image
707707
run: |
708708
source ./ov/setupvars.sh

0 commit comments

Comments
 (0)